blob: 53428a7c51145d0fbe8bd2a191a0aae99bcd52f6 (
plain)
1
2
3
4
5
6
7
|
# Plugin's routes
# See: http://guides.rubyonrails.org/routing.html
match 'projects/:id/hello', :to => 'example#say_hello', :via => 'get'
match 'projects/:id/bye', :to => 'example#say_goodbye', :via => 'get'
resources 'meetings'
|