aboutsummaryrefslogblamecommitdiffstats
path: root/config/routes.rb
blob: aa8151eb2f88e3f89767e3e493accd5a52a8835b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                








                                                                                                

                                                                                       






                                     
 




                              
           
 
                             
 








                              

           



                                         
 



                           



           
   
Rails.application.routes.draw do
  namespace :refinery, :path => '' do
    namespace :blog do
      root :to => "posts#index"

      resources :posts, :only => [:show]

      match 'feed.rss', :to => 'posts#index', :as => 'rss_feed', :defaults => {:format => "rss"}
      match 'categories/:id', :to => 'categories#show', :as => 'category'
      match ':id/comments', :to => 'posts#comment', :as => 'comments'
      get 'archive/:year(/:month)', :to => 'posts#archive', :as => 'archive_blog_posts'
      get 'tagged/:tag_id(/:tag_name)' => 'posts#tagged', :as => 'tagged_posts'
    end
  end

  namespace :refinery do
    namespace :blog do
      namespace :admin, :path =>'' do
        root :to => "posts#index"

        resources :posts do
          collection do
            get :uncategorized
            get :tags
          end
        end

        resources :categories

        resources :comments do
          collection do
            get :approved
            get :rejected
          end
          member do
            get :approved
            get :rejected
          end
        end

        resources :settings do
          collection do
            get :notification_recipients
            post :notification_recipients

            get :moderation
            get :comments
            get :teasers
          end
        end
      end
    end
  end
end