mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-01 18:37:31 +00:00
25 lines
681 B
Ruby
25 lines
681 B
Ruby
Rails.application.routes.draw do
|
|
|
|
resources :apps, only: [:index, :create, :show, :update] do
|
|
resources :versions, only: [:index, :create, :update]
|
|
|
|
get '/users', to: 'apps#users'
|
|
end
|
|
|
|
resources :data_sources, only: [:create, :index] do
|
|
post '/authorize_oauth2', to: "data_sources#authorize_oauth2"
|
|
collection do
|
|
post '/test_connection', to: 'data_sources#test_connection'
|
|
end
|
|
end
|
|
|
|
resources :data_queries, only: [:create, :index, :update] do
|
|
post '/run', to: 'data_queries#run'
|
|
end
|
|
|
|
resources :organizations, only: [] do
|
|
get '/users', to: 'organizations#users'
|
|
end
|
|
|
|
post 'authenticate', to: 'authentication#authenticate'
|
|
end
|