-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathroutes.rb
More file actions
86 lines (72 loc) · 2.46 KB
/
Copy pathroutes.rb
File metadata and controls
86 lines (72 loc) · 2.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
Rails.application.routes.draw do
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
devise_for :people, controllers: { registrations: 'registrations', omniauth_callbacks: "omniauth_callbacks" }
# The priority is based upon order of creation: first created -> highest priority.
# See how all your routes lay out with "rake routes".
# You can have the root of your site routed with "root"
root 'pages#index'
get '/about' => 'pages#about'
get '/welcome' => 'pages#welcome'
get '/conduct' => 'pages#conduct'
get '/gdpr' => 'pages#gdpr'
#resources routing declare all of the common routes for the certain controller (index, new, edit etc...)
resources :groups do
resources :topics do
resources :comments, only: [:create]
end
collection do
%i[searching recent inactive].each { |action| get action }
end
member do
get :manage_members
end
end
resources :people
resources :coaches
resources :memberships, only: [:create, :destroy, :update]
resources :posts
resource :dashboard, only: [:show] do
resources :admins, only: [:create, :destroy]
end
# Example of regular route:
# get 'products/:id' => 'catalog#view'
# Example of named route that can be invoked with purchase_url(id: product.id)
# get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
# Example resource route (maps HTTP verbs to controller actions automatically):
# resources :products
# Example resource route with options:
# resources :products do
# member do
# get 'short'
# post 'toggle'
# end
#
# collection do
# get 'sold'
# end
# end
# Example resource route with sub-resources:
# resources :products do
# resources :comments, :sales
# resource :seller
# end
# Example resource route with more complex sub-resources:
# resources :products do
# resources :comments
# resources :sales do
# get 'recent', on: :collection
# end
# end
# Example resource route with concerns:
# concern :toggleable do
# post 'toggle'
# end
# resources :posts, concerns: :toggleable
# resources :photos, concerns: :toggleable
# Example resource route within a namespace:
# namespace :admin do
# # Directs /admin/products/* to Admin::ProductsController
# # (app/controllers/admin/products_controller.rb)
# resources :products
# end
end