mastodon/config/routes.rb

33 lines
848 B
Ruby
Raw Normal View History

2016-02-20 22:53:20 +01:00
Rails.application.routes.draw do
2016-02-22 16:00:20 +01:00
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'
}
2016-03-05 13:12:24 +01:00
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
2016-02-22 16:00:20 +01:00
namespace :api do
resources :subscriptions, only: [:show]
post '/subscriptions/:id', to: 'subscriptions#update'
post '/salmon/:id', to: 'salmon#update', as: :salmon
end
2016-02-22 16:00:20 +01:00
root 'home#index'
2016-02-20 22:53:20 +01:00
end