mastodon/config/routes.rb

19 lines
555 B
Ruby
Raw Normal View History

2016-02-20 21:53:20 +00:00
Rails.application.routes.draw do
2016-02-22 15:00:20 +00:00
get '.well-known/host-meta', to: 'xrd#host_meta', as: :host_meta
get '.well-known/webfinger', to: 'xrd#webfinger', as: :webfinger
2016-03-05 12:12:24 +00:00
devise_for :users, path: 'auth'
resources :accounts, path: 'users', only: [:show], param: :username do
resources :stream_entries, path: 'updates', only: [:show]
end
2016-02-22 15:00:20 +00: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 15:00:20 +00:00
root 'home#index'
2016-02-20 21:53:20 +00:00
end