2020-09-01 08:11:01 -04:00
|
|
|
# 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'
|
2020-10-16 02:08:48 -04:00
|
|
|
get :users, to: 'users#show'
|
2020-09-01 08:11:01 -04:00
|
|
|
|
|
|
|
namespace :events do
|
|
|
|
post 'installed'
|
|
|
|
post 'uninstalled'
|
|
|
|
end
|
|
|
|
|
|
|
|
resources :subscriptions, only: [:index, :create, :destroy]
|
2021-07-23 08:09:05 -04:00
|
|
|
resources :branches, only: [:new]
|
2021-08-20 05:09:16 -04:00
|
|
|
|
|
|
|
resources :installations, only: [:index] do
|
|
|
|
collection do
|
|
|
|
put :update
|
|
|
|
end
|
|
|
|
end
|
2020-09-01 08:11:01 -04:00
|
|
|
end
|