mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 11:36:21 +00:00
Merge branch 'rails' into production.panel.sutty.nl
This commit is contained in:
commit
4fac4e6fd8
1 changed files with 8 additions and 3 deletions
|
@ -1,5 +1,10 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
# Como el sitio puede contener puntos, no queremos confundirlos con
|
||||||
|
# tipos de contenido, por ejemplo que /sites/site.org no intente service
|
||||||
|
# text/org.
|
||||||
|
SITE_ID_RE = %r{[^/]+}.freeze
|
||||||
|
|
||||||
Rails.application.routes.draw do
|
Rails.application.routes.draw do
|
||||||
devise_for :usuaries, controllers: { registrations: 'registrations' }
|
devise_for :usuaries, controllers: { registrations: 'registrations' }
|
||||||
get '/.well-known/change-password', to: redirect('/usuaries/edit')
|
get '/.well-known/change-password', to: redirect('/usuaries/edit')
|
||||||
|
@ -18,7 +23,7 @@ Rails.application.routes.draw do
|
||||||
resources :remote_flags, only: %i[show]
|
resources :remote_flags, only: %i[show]
|
||||||
end
|
end
|
||||||
|
|
||||||
resources :sites, only: %i[index], constraints: { site_id: /[a-z0-9\-.]+/, id: /[a-z0-9\-.]+/ } do
|
resources :sites, only: %i[index], constraints: { site_id: SITE_ID_RE, id: SITE_ID_RE } do
|
||||||
get :'invitades/cookie', to: 'invitades#cookie'
|
get :'invitades/cookie', to: 'invitades#cookie'
|
||||||
post :'posts/:layout', to: 'posts#create', as: :posts
|
post :'posts/:layout', to: 'posts#create', as: :posts
|
||||||
|
|
||||||
|
@ -42,12 +47,12 @@ Rails.application.routes.draw do
|
||||||
# Las rutas privadas empiezan con una ruta única para poder hacer un
|
# Las rutas privadas empiezan con una ruta única para poder hacer un
|
||||||
# alias en nginx sin tener que usar expresiones regulares para
|
# alias en nginx sin tener que usar expresiones regulares para
|
||||||
# detectar el nombre del sitio.
|
# detectar el nombre del sitio.
|
||||||
get '/sites/private/:site_id(*file)', to: 'private#show', constraints: { site_id: %r{[^/]+} }
|
get '/sites/private/:site_id(*file)', to: 'private#show', constraints: { site_id: SITE_ID_RE }
|
||||||
get '/env.js', to: 'env#index'
|
get '/env.js', to: 'env#index'
|
||||||
|
|
||||||
match '/api/v3/projects/:site_id/notices' => 'api/v1/notices#create', via: %i[post]
|
match '/api/v3/projects/:site_id/notices' => 'api/v1/notices#create', via: %i[post]
|
||||||
|
|
||||||
resources :sites, constraints: { site_id: %r{[^/]+}, id: %r{[^/]+} } do
|
resources :sites, constraints: { site_id: SITE_ID_RE, id: SITE_ID_RE } do
|
||||||
# Gestionar actualizaciones del sitio
|
# Gestionar actualizaciones del sitio
|
||||||
get 'pull', to: 'sites#fetch'
|
get 'pull', to: 'sites#fetch'
|
||||||
post 'pull', to: 'sites#merge'
|
post 'pull', to: 'sites#merge'
|
||||||
|
|
Loading…
Reference in a new issue