From c9ed5f793a6752faee5f0a95031252dfffe8261d Mon Sep 17 00:00:00 2001 From: Tuan Dang Date: Sun, 5 Nov 2023 15:57:04 +0200 Subject: [PATCH] Remove action variables --- backend/src/variables/action.ts | 6 ------ backend/src/variables/index.ts | 1 - 2 files changed, 7 deletions(-) delete mode 100644 backend/src/variables/action.ts diff --git a/backend/src/variables/action.ts b/backend/src/variables/action.ts deleted file mode 100644 index 033be15b0..000000000 --- a/backend/src/variables/action.ts +++ /dev/null @@ -1,6 +0,0 @@ -export const ACTION_LOGIN = "login"; -export const ACTION_LOGOUT = "logout"; -export const ACTION_ADD_SECRETS = "addSecrets"; -export const ACTION_DELETE_SECRETS = "deleteSecrets"; -export const ACTION_UPDATE_SECRETS = "updateSecrets"; -export const ACTION_READ_SECRETS = "readSecrets"; \ No newline at end of file diff --git a/backend/src/variables/index.ts b/backend/src/variables/index.ts index 5a625d49d..ec9f14212 100644 --- a/backend/src/variables/index.ts +++ b/backend/src/variables/index.ts @@ -1,4 +1,3 @@ -export * from "./action"; export * from "./authentication"; export * from "./crypto"; export * from "./environment";