mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-06 14:58:27 +00:00
11 lines
271 B
Ruby
11 lines
271 B
Ruby
class DataQueriesController < ApplicationController
|
|
|
|
def create
|
|
@data_query = DataQuery.create(
|
|
name: params[:name],
|
|
kind: params[:kind],
|
|
options: params[:options],
|
|
app_id: params[:app_id]
|
|
)
|
|
end
|
|
end
|