7 lines
174 B
Ruby
7 lines
174 B
Ruby
|
Zammad::Application.routes.draw do
|
||
|
api_path = Rails.configuration.api_path
|
||
|
|
||
|
match api_path + '/chat_sessions/:id', to: 'chat_sessions#show', via: :get
|
||
|
|
||
|
end
|