tag.rb 335 B

123456789
  1. Zammad::Application.routes.draw do
  2. api_path = Rails.configuration.api_path
  3. # links
  4. match api_path + '/tags', :to => 'tags#list', :via => :get
  5. match api_path + '/tags/add', :to => 'tags#add', :via => :get
  6. match api_path + '/tags/remove', :to => 'tags#remove', :via => :get
  7. end