Add invitation system (#398)

This commit is contained in:
Riccardo Graziosi
2024-09-06 20:27:15 +02:00
committed by GitHub
parent b6c92cc1b0
commit 519ec80b90
25 changed files with 591 additions and 10 deletions

View File

@@ -66,6 +66,9 @@ Rails.application.routes.draw do
resources :post_statuses, only: [:index, :create, :update, :destroy] do
patch 'update_order', on: :collection
end
resources :invitations, only: [:create]
post '/invitations/test', to: 'invitations#test', as: :invitation_test
namespace :site_settings do
get 'general'
@@ -73,6 +76,7 @@ Rails.application.routes.draw do
get 'boards'
get 'post_statuses'
get 'roadmap'
get 'invitations'
get 'appearance'
end