mobile.rb 392 B

1234567891011
  1. # Copyright (C) 2012-2022 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. get '/mobile', to: 'mobile#index'
  7. get '/mobile/*path', to: 'mobile#index'
  8. end
  9. end