fix periods not being picked up

This commit is contained in:
Echo
2025-07-08 20:19:58 -04:00
parent 1251503729
commit a9e1e60506

View File

@@ -107,7 +107,7 @@ Rails.application.routes.draw do
post "my/settings/migrate_heartbeats", to: "users#migrate_heartbeats", as: :my_settings_migrate_heartbeats
namespace :my do
resources :project_repo_mappings, param: :project_name, only: [ :edit, :update ]
resources :project_repo_mappings, param: :project_name, only: [ :edit, :update ], constraints: { project_name: /[^\/]+/ }
resource :mailing_address, only: [ :show, :edit ]
get "mailroom", to: "mailroom#index"
end