summaryrefslogtreecommitdiff
path: root/users/config/routes.rb
blob: 2cd174023c49e11af06558e068cb47324609a65b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Rails.application.routes.draw do

  constraints :subdomain => "api" do
    namespace "api", { module: "V1",
        path: "/1/",
        defaults: {format: 'json'} } do
      resources :sessions, :only => [:new, :create, :update, :destroy]
      resources :users, :only => [:create, :update]
    end
  end

  get "login" => "sessions#new", :as => "login"
  get "logout" => "sessions#destroy", :as => "logout"
  resources :sessions, :only => [:new, :create, :update, :destroy]

  get "signup" => "users#new", :as => "signup"
  resources :users do
    resources :email_aliases, :only => [:destroy], :id => /.*/
  end

  get "/.well-known/host-meta" => 'webfinger#host_meta'
  get "/webfinger" => 'webfinger#search'
end