You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
555 B
19 lines
555 B
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'
|
|
|
|
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
|