From 39b3092fa97bdc6d8fa9a087ecf1a5c9fa7cc31a Mon Sep 17 00:00:00 2001 From: Tyler Ouyang Date: Wed, 17 Jul 2024 18:32:11 -0700 Subject: [PATCH] add file --- deploy-board/deploy_board/settings.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/deploy-board/deploy_board/settings.py b/deploy-board/deploy_board/settings.py index 0f95bdd45a..bcfcc3b89e 100644 --- a/deploy-board/deploy_board/settings.py +++ b/deploy-board/deploy_board/settings.py @@ -316,6 +316,8 @@ RODIMUS_CLUSTER_REPLACEMENT_WIKI_URL = os.getenv("TELETRAAN_RODIMUS_CLUSTER_REPLACEMENT_WIKI_URL", None) RODIMUS_AUTO_CLUSTER_REFRESH_WIKI_URL = os.getenv("TELETRAAN_RODIMUS_AUTO_CLUSTER_REFRESH_WIKI_URL", None) +UNAUTHORIZED_ERROR_TEXT = "Access denied. Please check if you have the required permission in the Admin panel." + if IS_PINTEREST: # use knox if present KNOX_SESSION_ID = os.getenv("KNOX_SESSION_ID") @@ -402,3 +404,5 @@ AWS_PRIMARY_ACCOUNT = os.getenv("AWS_PRIMARY_ACCOUNT", "998131032990") #Sub Account AWS_SUB_ACCOUNT = os.getenv("AWS_SUB_ACCOUNT", "562567494283") + + UNAUTHORIZED_ERROR_TEXT = "Access denied. Please check if you have the required permissions. For details see: http://pinch.pinadmin.com/teletraan-auth-tsg"