mastodon/config/routes.rb

14 lines
490 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
get 'atom/entries/:id', to: 'atom#entry', as: :atom_entry
get 'atom/users/:id', to: 'atom#user_stream', as: :atom_user_stream
get 'users/:name', to: 'profile#show', as: :profile
get 'users/:name/:id', to: 'profile#entry', as: :status
2016-02-22 16:00:20 +01:00
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