about summary refs log tree commit diff
path: root/config/routes.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-01-21 22:15:22 +0100
committerEugen Rochko <eugen@zeonfederated.com>2017-01-21 22:15:22 +0100
commitd72dd38c13f287d7e2b7515889c10ede436baa69 (patch)
tree0b930d8ff33e948f45b3fa5c01a8836769cc6d5f /config/routes.rb
parent3a4b5961bea66681ba9c455fcfd3ec497bfaed2f (diff)
parent5fef55c11a7ea855e7b43ed274558a0893d0dc16 (diff)
Merge branch 'master' of https://github.com/ineffyble/mastodon into ineffyble-master
Diffstat (limited to 'config/routes.rb')
-rw-r--r--config/routes.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb
index 349ab336a..1a7d53185 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -3,6 +3,12 @@
 require 'sidekiq/web'
 
 Rails.application.routes.draw do
+
+  # Development-only routes
+  if Rails.env.development?
+    mount LetterOpenerWeb::Engine, at: "/letter_opener"
+  end
+
   mount ActionCable.server, at: 'cable'
 
   authenticate :user, lambda { |u| u.admin? } do