resend invitations

This commit is contained in:
2026-01-29 15:47:03 +01:00
parent 887d52c447
commit e7f2215be4
3 changed files with 25 additions and 2 deletions
+5 -1
View File
@@ -30,7 +30,11 @@ Rails.application.routes.draw do
root "dashboard#index"
get "dashboard", to: "dashboard#index"
resources :users, only: [ :index, :edit, :update, :destroy ]
resources :invitations, only: [ :index, :new, :create, :destroy ]
resources :invitations, only: [ :index, :new, :create, :destroy ] do
member do
put :resend
end
end
end
resources :entries do