about summary refs log tree commit diff
path: root/config/routes.rb
blob: 9ddc00c8f599052abec559f2b1f933a75d17de3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
Rails.application.routes.draw do
  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

  mount Mastodon::API => '/api/'

  root 'home#index'
end