1
0
Fork 0
mirror of https://github.com/drapergem/draper synced 2023-03-27 23:21:17 -04:00
draper/spec/dummy/config/routes.rb
2013-01-25 17:42:56 +00:00

9 lines
211 B
Ruby

Dummy::Application.routes.draw do
scope "(:locale)", locale: /en|zh/ do
resources :posts, only: [:show] do
get "mail", on: :member
end
end
devise_for :users, :admins if defined?(Devise)
end