aboutsummaryrefslogtreecommitdiffstats
path: root/config/routes.rb
blob: 353d0b8ff13335c3dafcf3625cffca3781651d66 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
Rails.application.routes.draw do
  scope(:module => 'refinery') do
    scope(:path => 'blog', :module => 'blog') do
      root :to => 'posts#index', :as => 'blog_root'
      match 'feed.rss', :to => 'posts#index', :as => 'blog_rss_feed', :defaults => {:format => "rss"}
      match ':id', :to => 'posts#show', :as => 'blog_post'
      match 'categories/:id', :to => 'categories#show', :as => 'blog_category'
      match ':id/comments', :to => 'posts#comment', :as => 'blog_post_blog_comments'
      get 'archive/:year(/:month)', :to => 'posts#archive', :as => 'archive_blog_posts'
      get 'tagged/:tag_id(/:tag_name)' => 'posts#tagged', :as => 'tagged_posts'

      scope(:path => 'refinery', :as => 'refinery_admin', :module => 'admin') 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