about summary refs log tree commit diff
path: root/config/routes.rb
blob: 3167cbdeb9b5a6b05fc4694394e42c2859e0b928 (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
Rails.application.routes.draw do
  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
    member do
      post :follow
      post :unfollow
    end

    resources :stream_entries, path: 'updates', only: [:show] do
      member do
        post :reblog
        post :favourite
      end
    end
  end

  namespace :api do
    resources :subscriptions, only: [:show]
    post '/subscriptions/:id', to: 'subscriptions#update'
    post '/salmon/:id', to: 'salmon#update', as: :salmon
  end

  root 'home#index'
end