trabajo-afectivo/config/routes/applications.rb

15 lines
624 B
Ruby
Raw Normal View History

Zammad::Application.routes.draw do
api_path = Rails.configuration.api_path
match api_path + '/applications', to: 'applications#index', via: :get
match api_path + '/applications/:id', to: 'applications#show', via: :get
match api_path + '/applications', to: 'applications#create', via: :post
match api_path + '/applications/:id', to: 'applications#update', via: :put
2016-11-13 21:16:17 +00:00
match api_path + '/applications/token', to: 'applications#token', via: :post
# oauth2 provider routes
use_doorkeeper do
skip_controllers :applications, :authorized_applications
end
end