mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-20 23:48:27 +00:00
5 lines
166 B
Ruby
5 lines
166 B
Ruby
class AppsController < ApplicationController
|
|
def create
|
|
@app = App.create({ name: 'Untitled app', organization: @current_user.organization })
|
|
end
|
|
end
|