2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2021-06-01 12:20:20 +00:00
|
|
|
|
2016-07-28 10:09:32 +00:00
|
|
|
Zammad::Application.routes.draw do
|
|
|
|
api_path = Rails.configuration.api_path
|
|
|
|
|
|
|
|
# access token
|
|
|
|
match api_path + '/user_access_token', to: 'user_access_token#index', via: :get
|
|
|
|
match api_path + '/user_access_token', to: 'user_access_token#create', via: :post
|
|
|
|
match api_path + '/user_access_token/:id', to: 'user_access_token#destroy', via: :delete
|
|
|
|
|
|
|
|
end
|