Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # examples of rails 4 routes concerns
- concern :commentable do
- resources :comments
- end
- concern :image_attachable do
- resources :images, only: :index
- end
- resources :messages, concerns: :commentable
- resources :posts, concerns: [:commentable, :image_attachable]
- concern :printable do
- member do
- post :print
- end
- end
- resources :pamphlets, concerns: :printable
- resources :posters, concerns: :printable do
- collection do
- post :bulk_print
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement