blob: 7f1bf183a6350b6921d971ad2455e7aeb683dff2 (
plain) (
tree)
|
|
ActionController::Routing::Routes.draw do |map|
map.resources :blog_posts, :as => :blog
map.namespace(:admin, :path_prefix => 'refinery') do |admin|
admin.namespace :blog do |blog|
blog.resources :posts
blog.resources :categories
blog.resources :comments, :collection => {:approved => :get, :rejected => :get}
blog.resources :settings, :collection => {:update_notified => [:get, :post], :moderation => :get}
end
end
end
|