0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-27 22:49:56 -05:00

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
This commit is contained in:
Naz 2022-09-15 10:13:45 +08:00
parent d06194a0d6
commit 81e34e02c9
No known key found for this signature in database

View file

@ -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,