trabajo-afectivo/config/routes/object_manager_attribute.rb

17 lines
1.1 KiB
Ruby
Raw Permalink Normal View History

2022-01-01 13:38:12 +00:00
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
2014-11-02 19:44:15 +00:00
Zammad::Application.routes.draw do
api_path = Rails.configuration.api_path
# object_manager
2016-05-19 08:20:38 +00:00
match api_path + '/object_manager_attributes_list', to: 'object_manager_attributes#list', via: :get
match api_path + '/object_manager_attributes', to: 'object_manager_attributes#index', via: :get
match api_path + '/object_manager_attributes/:id', to: 'object_manager_attributes#show', via: :get
match api_path + '/object_manager_attributes', to: 'object_manager_attributes#create', via: :post
match api_path + '/object_manager_attributes/:id', to: 'object_manager_attributes#update', via: :put
match api_path + '/object_manager_attributes/:id', to: 'object_manager_attributes#destroy', via: :delete
match api_path + '/object_manager_attributes_discard_changes', to: 'object_manager_attributes#discard_changes', via: :post
match api_path + '/object_manager_attributes_execute_migrations', to: 'object_manager_attributes#execute_migrations', via: :post
2014-11-02 19:44:15 +00:00
end