debian-mirror-gitlab/config/routes/issues.rb

25 lines
610 B
Ruby
Raw Normal View History

2020-03-13 15:44:24 +05:30
# frozen_string_literal: true
get :issues, to: 'issues#calendar', constraints: lambda { |req| req.format == :ics }
resources :issues, concerns: :awardable, constraints: { id: /\d+/ } do
member do
post :toggle_subscription
post :mark_as_spam
post :move
put :reorder
get :related_branches
get :can_create_branch
get :realtime_changes
post :create_merge_request
get :discussions, format: :json
2020-05-24 23:13:21 +05:30
get '/designs(/*vueroute)', to: 'issues#designs', as: :designs, format: false
2020-03-13 15:44:24 +05:30
end
collection do
post :bulk_update
post :import_csv
2020-04-22 19:07:51 +05:30
post :export_csv
2020-03-13 15:44:24 +05:30
end
end