debian-mirror-gitlab/config/routes/jira_connect.rb
2021-11-11 11:23:49 +05:30

24 lines
525 B
Ruby

# frozen_string_literal: true
namespace :jira_connect do
# This is so we can have a named route helper for the base URL
root to: proc { [404, {}, ['']] }, as: 'base'
get 'app_descriptor' => 'app_descriptor#show'
get :users, to: 'users#show'
namespace :events do
post 'installed'
post 'uninstalled'
end
resources :subscriptions, only: [:index, :create, :destroy]
resources :branches, only: [:new]
resources :installations, only: [:index] do
collection do
put :update
end
end
end