mastodon/config/routes.rb

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