From 81e34e02c9e55b55e22dfa7e439550ddaa479e80 Mon Sep 17 00:00:00 2001 From: Naz Date: Thu, 15 Sep 2022 10:13:45 +0800 Subject: [PATCH] Added one week in seconds value to constants refs https://github.com/TryGhost/Toolbox/issues/411 - There's one week in MS, and just to have a full set of values in S added a week in seconds --- ghost/constants/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/ghost/constants/index.js b/ghost/constants/index.js index a81593b18a..411ba55783 100644 --- a/ghost/constants/index.js +++ b/ghost/constants/index.js @@ -1,6 +1,7 @@ module.exports = { ONE_HOUR_S: 3600, ONE_DAY_S: 86400, + ONE_WEEK_S: 604800, ONE_MONTH_S: 2628000, SIX_MONTH_S: 15768000, ONE_YEAR_S: 31536000,