mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 03:07:52 +01:00
70 lines
2.2 KiB
Ruby
70 lines
2.2 KiB
Ruby
Rails.application.routes.draw do
|
|
if Rails.application.multi_tenancy?
|
|
constraints subdomain: 'showcase' do
|
|
root to: 'static_pages#showcase', as: :showcase
|
|
end
|
|
|
|
constraints subdomain: 'login' do
|
|
get '/signup', to: 'tenants#new'
|
|
get '/is_available', to: 'tenants#is_available'
|
|
|
|
resource :tenants, only: [:create]
|
|
end
|
|
end
|
|
|
|
constraints subdomain: /.*/ do
|
|
root to: 'static_pages#root'
|
|
|
|
get '/roadmap', to: 'static_pages#roadmap'
|
|
get '/pending-tenant', to: 'static_pages#pending_tenant'
|
|
get '/blocked-tenant', to: 'static_pages#blocked_tenant'
|
|
|
|
devise_for :users, :controllers => {
|
|
:registrations => 'registrations',
|
|
:sessions => 'sessions'
|
|
}
|
|
|
|
resources :tenants, only: [:show, :update]
|
|
resources :users, only: [:index, :update]
|
|
resources :o_auths, only: [:index, :create, :update, :destroy] do
|
|
resource :tenant_default_o_auths, only: [:create, :destroy]
|
|
end
|
|
get '/o_auths/:id/start', to: 'o_auths#start', as: :o_auth_start
|
|
get '/o_auths/:id/callback', to: 'o_auths#callback', as: :o_auth_callback
|
|
get '/o_auths/sign_in_from_oauth_token', to: 'o_auths#sign_in_from_oauth_token', as: :o_auth_sign_in_from_oauth_token
|
|
|
|
resources :posts, only: [:index, :create, :show, :update, :destroy] do
|
|
resource :follows, only: [:create, :destroy]
|
|
resources :follows, only: [:index]
|
|
resource :likes, only: [:create, :destroy]
|
|
resources :likes, only: [:index]
|
|
resources :comments, only: [:index, :create, :update, :destroy]
|
|
resources :post_status_changes, only: [:index]
|
|
end
|
|
|
|
resources :boards, only: [:index, :create, :update, :destroy, :show] do
|
|
patch 'update_order', on: :collection
|
|
end
|
|
|
|
resources :post_statuses, only: [:index, :create, :update, :destroy] do
|
|
patch 'update_order', on: :collection
|
|
end
|
|
|
|
namespace :site_settings do
|
|
get 'general'
|
|
get 'authentication'
|
|
get 'boards'
|
|
get 'post_statuses'
|
|
get 'roadmap'
|
|
get 'appearance'
|
|
get 'users'
|
|
end
|
|
end
|
|
|
|
# Healthcheck endpoint
|
|
get '/health', to: proc {
|
|
Tenant.first # to make sure db works
|
|
[200, {}, ['success']]
|
|
}
|
|
end
|