mirror of
https://github.com/drapergem/draper
synced 2023-03-27 23:21:17 -04:00
9 lines
211 B
Ruby
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
|