summaryrefslogtreecommitdiffstats
path: root/extra/sample_plugin/config/routes.rb
diff options
context:
space:
mode:
Diffstat (limited to 'extra/sample_plugin/config/routes.rb')
-rw-r--r--extra/sample_plugin/config/routes.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/extra/sample_plugin/config/routes.rb b/extra/sample_plugin/config/routes.rb
new file mode 100644
index 000000000..53428a7c5
--- /dev/null
+++ b/extra/sample_plugin/config/routes.rb
@@ -0,0 +1,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'