1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
LeapWeb::Application.routes.draw do
#
# Please do not use root_path or root_url. Use home_path and home_url instead,
# so that the path will be correctly prefixed with the locale.
#
root :to => "home#index"
get '(:locale)' => 'home#index', :locale => CommonLanguages.match_available, :as => 'home'
#
# HTTP Error Handling
# instead of the default error pages use the errors controller and views
#
match '/404' => 'errors#not_found'
match '/500' => 'errors#server_error'
scope "(:locale)", :locale => CommonLanguages.match_available, :controller => 'pages', :action => 'show' do
get 'privacy-policy', :as => 'privacy_policy'
get 'terms-of-service', :as => 'terms_of_service'
get 'about', :as => 'about'
get 'contact', :as => 'contact'
get 'pricing', :as => 'pricing'
get 'bye', :as => 'bye'
end
get '/provider.json' => 'static_config#provider'
namespace "api", { module: "v1",
path: "/1/",
defaults: {format: 'json'} } do
resources :sessions, :only => [:new, :create, :update],
:constraints => { :id => /[^\/]+(?=\.json\z)|[^\/]+/ }
delete "logout" => "sessions#destroy", :as => "logout"
resources :users, :only => [:create, :update, :destroy, :index]
resources :messages, :only => [:index, :update]
resource :cert, :only => [:show, :create]
resource :smtp_cert, :only => [:create]
resource :service, :only => [:show]
resources :configs, :only => [:index, :show]
end
scope "(:locale)", :locale => CommonLanguages.match_available do
get "login" => "sessions#new", :as => "login"
delete "logout" => "sessions#destroy", :as => "logout"
get "signup" => "users#new", :as => "signup"
resources :users, :except => [:create, :update] do
# resource :email_settings, :only => [:edit, :update]
# resources :email_aliases, :only => [:destroy], :id => /.*/
post 'deactivate', on: :member
post 'enable', on: :member
end
resources :invite_codes, :only => [:index, :destroy, :create]
resources :identities, :only => [:index, :destroy]
end
get "/.well-known/host-meta" => 'webfinger#host_meta'
get "/webfinger" => 'webfinger#search'
get "/key/:login" => 'keys#show'
end
|