Sha256: 57e528374ae9aa23e5c36f9755013eb48174e3345cda82ebaf1dad224e31f52b

Contents?: true

Size: 1.76 KB

Versions: 5

Compression:

Stored size: 1.76 KB

Contents

Rails.application.routes.draw do
  #Background tasks
  mount Resque::Server, :at => "/resque"
  
  root :to => "frontpage#index"
  
  match 'home' => 'home#index', :as => :home
  match 'home' => 'home#index', :as => :user_root # devise after_sign_in_path_for
  
  ##API###
  match 'api/keygen' => 'api#create_key', :as => :api_keygen
  match 'api/user/:id' => 'api#users'
  match 'api/me' => 'api#users'
  match 'api/me/home/' => 'api#activity_atom_feed', :format => 'atom', :as => :api_my_home
  match 'api/user/:id/public' => 'api#activity_atom_feed', :format => 'atom'
  ##/API##
  
  # Webfinger
  match '.well-known/host-meta',:to => 'frontpage#host_meta'
  
  # Social Stream subjects configured in config/initializers/social_stream.rb
  SocialStream.subjects.each do |actor|
    resources actor.to_s.pluralize do
      resource :like
      resource :profile
      resources :activities
    end
  end

  resources :contacts

  namespace "relation" do
    resources :customs
  end
  resources :permissions

  match 'tags'     => 'tags#index', :as => 'tags'
  
  # Find subjects by slug
  match 'subjects/lrdd/:id' => 'subjects#lrdd', :as => 'subject_lrdd'
  
  resource :representation
  
  resources :settings do
    collection do
      put 'update_all'
    end
  end

  resources :messages

  resources :conversations

  resources :invitations
  
  resources :notifications do
    collection do
      put 'update_all'
    end
  end

  resources :comments

  resources :activities do
    resource :like
  end
  
  match 'search' => 'search#index', :as => :search  
  
  match 'ties' => 'ties#index', :as => :ties
  
  # Social Stream objects configured in config/initializers/social_stream.rb
  (SocialStream.objects - [ :actor ]).each do |object|
    resources object.to_s.pluralize
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
social_stream-0.9.3 base/config/routes.rb
social_stream-base-0.9.7 config/routes.rb
social_stream-0.9.2 base/config/routes.rb
social_stream-base-0.9.6 config/routes.rb
social_stream-base-0.9.5 config/routes.rb