summaryrefslogtreecommitdiffstats
path: root/extra/sample_plugin/config/routes.rb
blob: 57fc3e633e345b7178c02f0f6a43b891d862dd27 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: false

# 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'