2e8d0153cd
All arguments passed to the `FeatureConstrainer` will be passed on to the `Feature.enabled?` check.
7 lines
277 B
Ruby
7 lines
277 B
Ruby
constraints(::Constraints::FeatureConstrainer.new(:graphql, default_enabled: true)) do
|
|
post '/api/graphql', to: 'graphql#execute'
|
|
mount GraphiQL::Rails::Engine, at: '/-/graphql-explorer', graphql_path: '/api/graphql'
|
|
end
|
|
|
|
API::API.logger Rails.logger
|
|
mount API::API => '/'
|