ToolJet/app/controllers/apps_controller.rb

15 lines
313 B
Ruby
Raw Normal View History

2021-04-01 10:59:27 +00:00
class AppsController < ApplicationController
2021-04-02 11:09:35 +00:00
2021-04-01 10:59:27 +00:00
def create
@app = App.create({ name: 'Untitled app', organization: @current_user.organization })
end
2021-04-02 11:09:35 +00:00
def show
@app = App.find params[:id]
end
def update
@app = App.update(definition: params[:definition])
end
2021-04-01 10:59:27 +00:00
end