first_steps.rb 262 B

1234567
  1. Zammad::Application.routes.draw do
  2. api_path = Rails.configuration.api_path
  3. match api_path + '/first_steps', to: 'first_steps#index', via: :get
  4. match api_path + '/first_steps/test_ticket', to: 'first_steps#test_ticket', via: :post
  5. end