about summary refs log tree commit diff
path: root/config/routes.rb
blob: 7dd71ec46718c92d6d190a48364d83857776c98e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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

  resources :accounts, path: 'users', only: [:show], param: :username do
    resources :stream_entries, path: 'updates', only: [:show]
  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