clarion/config/routes.rb

69 lines
1.8 KiB
Ruby
Raw Permalink Normal View History

2014-07-28 12:34:18 +03:00
Rails.application.routes.draw do
2019-04-28 21:10:54 +03:00
devise_for :users, controllers: {registrations: "registrations", confirmations: "confirmations"}
scope module: :public do
2019-04-28 21:10:54 +03:00
root to: "home#index"
resource :personal_profile, path: "profile"
2015-10-19 00:47:39 +03:00
resources :events do
2019-04-28 21:10:54 +03:00
resources :feedback, controller: "event_feedbacks", only: [:new, :create]
resource :feedback_qr_code, controller: "event_feedback_qrcodes", only: :show
2015-10-19 00:47:39 +03:00
member do
get :confirm
end
end
2024-04-18 21:11:08 +03:00
resources :volunteers do
member do
get :confirm, to: "volunteer_confirmations#create"
end
end
2015-10-21 23:20:04 +03:00
resources :volunteer_teams, only: [:index]
2019-04-28 21:10:54 +03:00
resources :feedback, as: "conference_feedbacks", controller: "conference_feedbacks", only: [:new, :create, :index]
end
namespace :api do
2023-10-30 21:08:38 +02:00
resources :conferences, only: [:index] do
2016-08-27 17:11:20 +03:00
resources :events, only: :index do
2016-09-26 16:43:14 +03:00
collection do
get :halfnarp_friendly
end
2016-08-27 17:11:20 +03:00
end
resources :speakers, only: :index
2015-10-08 02:34:19 +03:00
resources :tracks, only: :index
resources :event_types, only: :index
resources :halls, only: :index
resources :slots, only: :index
2024-10-03 23:24:41 +03:00
resource :schedule, only: :show
2016-10-09 07:17:34 +03:00
resources :volunteers
end
end
namespace :management do
2019-04-28 21:10:54 +03:00
root to: "conferences#index"
resources :conferences do
2016-10-11 01:52:19 +03:00
member do
patch :update_vote_data
get :vote_results
end
2016-10-13 10:39:45 +03:00
resources :events do
member do
get :conflicts
end
end
2015-06-09 21:50:23 +03:00
resources :volunteers
resources :propositions
2015-06-09 21:50:23 +03:00
resources :sponsorship_offers
resource :call_for_participation, only: [:create, :destroy]
2022-10-19 00:31:17 +03:00
resources :feedback, controller: :feedback, only: :index
2015-07-28 15:43:19 +03:00
resources :personal_profiles do
2015-06-09 21:50:23 +03:00
member do
put :toggle_admin
end
2015-05-30 16:34:49 +03:00
end
end
2014-09-17 12:43:17 +03:00
end
2014-07-28 12:34:18 +03:00
end