Skip to content
Snippets Groups Projects
routes.rb 1.11 KiB
Newer Older
  • Learn to ignore specific revisions
  • Eugen Rochko's avatar
    Eugen Rochko committed
    Rails.application.routes.draw do
    
      use_doorkeeper
    
    
    Eugen Rochko's avatar
    Eugen Rochko committed
      get '.well-known/host-meta', to: 'xrd#host_meta', as: :host_meta
      get '.well-known/webfinger', to: 'xrd#webfinger', as: :webfinger
    
    
      devise_for :users, path: 'auth', controllers: {
        sessions:           'auth/sessions',
        registrations:      'auth/registrations',
        passwords:          'auth/passwords'
      }
    
      resources :accounts, path: 'users', only: [:show], param: :username do
    
        resources :stream_entries, path: 'updates', only: [:show]
    
    Eugen Rochko's avatar
    Eugen Rochko committed
    
    
        # PubSubHubbub
    
        resources :subscriptions, only: [:show]
        post '/subscriptions/:id', to: 'subscriptions#update'
    
        post '/salmon/:id', to: 'salmon#update', as: :salmon
    
    
        # JSON / REST API
        resources :statuses, only: [:create, :show] do
          member do
            post :reblog
    
            post :favourite
    
          end
        end
    
        resources :follows,  only: [:create]
    
        resources :accounts, only: [:show] do
          member do
            get :statuses
            get :followers
            get :following
    
            post :follow
            post :unfollow
          end
        end
    
    Eugen Rochko's avatar
    Eugen Rochko committed
    
      root 'home#index'
    
    Eugen Rochko's avatar
    Eugen Rochko committed
    end