trabajo-afectivo/config/routes/role.rb
2022-01-01 14:38:12 +01:00

12 lines
455 B
Ruby

# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
Zammad::Application.routes.draw do
api_path = Rails.configuration.api_path
# roles
match api_path + '/roles', to: 'roles#index', via: :get
match api_path + '/roles/:id', to: 'roles#show', via: :get
match api_path + '/roles', to: 'roles#create', via: :post
match api_path + '/roles/:id', to: 'roles#update', via: :put
end