mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-21 16:01:14 +00:00
This will be changed to true in the future. git-svn-id: http://svn.redmine.org/redmine/trunk@17947 e93f8b46-1217-0410-a6f0-8f06a7374b81
10 lines
263 B
Ruby
10 lines
263 B
Ruby
# 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'
|