chinwagsocial/config/routes.rb

14 lines
490 B
Ruby
Raw Normal View History

2016-02-21 08:53:20 +11:00
Rails.application.routes.draw do
2016-02-23 02:00:20 +11: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-23 02:00:20 +11:00
2016-02-21 08:53:20 +11:00
mount Mastodon::API => '/api/'
2016-02-23 02:00:20 +11:00
root 'home#index'
2016-02-21 08:53:20 +11:00
end