You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
422 B

8 years ago
8 years ago
8 years ago
  1. Rails.application.routes.draw do
  2. get '.well-known/host-meta', to: 'xrd#host_meta', as: :host_meta
  3. get '.well-known/webfinger', to: 'xrd#webfinger', as: :webfinger
  4. get 'atom/entry/:id', to: 'atom#entry', as: :atom_entry
  5. get 'atom/user/:id', to: 'atom#user_stream', as: :atom_user_stream
  6. get 'user/:name', to: 'profile#show', as: :profile
  7. mount Mastodon::API => '/api/'
  8. root 'home#index'
  9. end