trabajo-afectivo/config/routes/tag.rb

10 lines
318 B
Ruby
Raw Normal View History

2013-08-21 19:16:42 +00:00
Zammad::Application.routes.draw do
api_path = Rails.configuration.api_path
2012-11-18 11:06:55 +00:00
2013-08-21 19:16:42 +00:00
# links
match api_path + '/tags', to: 'tags#list', via: :get
match api_path + '/tags/add', to: 'tags#add', via: :get
match api_path + '/tags/remove', to: 'tags#remove', via: :get
2012-11-18 11:06:55 +00:00
end