From d99f489fd633e3b96ef5b13f902a1001c135ad94 Mon Sep 17 00:00:00 2001 From: simon lehericey Date: Tue, 19 Mar 2024 22:21:44 +0100 Subject: [PATCH] remove unused application_shortname --- config/env.example.optional | 1 - config/initializers/01_application_name.rb | 1 - 2 files changed, 2 deletions(-) diff --git a/config/env.example.optional b/config/env.example.optional index 44370a1d1..4595d12a0 100644 --- a/config/env.example.optional +++ b/config/env.example.optional @@ -2,7 +2,6 @@ # Application name, for display and generating links APPLICATION_NAME="demarches-simplifiees.fr" -APPLICATION_SHORTNAME="d-s.fr" APPLICATION_BASE_URL="https://www.demarches-simplifiees.fr" # When migrating app to a new domain, configure APP_HOST to the new domain diff --git a/config/initializers/01_application_name.rb b/config/initializers/01_application_name.rb index 60523cdb1..0378fb48d 100644 --- a/config/initializers/01_application_name.rb +++ b/config/initializers/01_application_name.rb @@ -2,5 +2,4 @@ # initializers, and thus make the APPLICATION_ constants available in # the other initializers. APPLICATION_NAME = ENV.fetch("APPLICATION_NAME", "demarches-simplifiees.fr") -APPLICATION_SHORTNAME = ENV.fetch("APPLICATION_SHORTNAME", "d-s.fr") APPLICATION_BASE_URL = ENV.fetch("APPLICATION_BASE_URL", "https://www.demarches-simplifiees.fr")