graphql.rb 377 B

12345678910
  1. # Copyright (C) 2012-2023 Zammad Foundation, https://zammad-foundation.org/
  2. # Temporary Hack: only process trigger events if ActionCable is enabled.
  3. # TODO: Remove when this switch is not needed any more.
  4. if ENV['ENABLE_EXPERIMENTAL_MOBILE_FRONTEND'] == 'true'
  5. Zammad::Application.routes.draw do
  6. match '/graphql', to: 'graphql#execute', via: %i[options post]
  7. end
  8. end