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
|
|
|
|
|
|
|
|
get 'atom/:id', to: 'atom#user_stream', as: :atom_user_stream
|
|
|
|
get 'user/:name', to: 'profile#show', as: :profile
|
|
|
|
|
2016-02-20 22:53:20 +01:00
|
|
|
mount Mastodon::API => '/api/'
|
2016-02-22 16:00:20 +01:00
|
|
|
|
|
|
|
root 'home#index'
|
2016-02-20 22:53:20 +01:00
|
|
|
end
|