Skip to content
Snippets Groups Projects
routes.rb 555 B
Newer Older
Eugen Rochko's avatar
Eugen Rochko committed
Rails.application.routes.draw do
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'

  resources :accounts, path: 'users', only: [:show], param: :username do
    resources :stream_entries, path: 'updates', only: [:show]
  end
Eugen Rochko's avatar
Eugen Rochko committed

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

  root 'home#index'
Eugen Rochko's avatar
Eugen Rochko committed
end