Push back date

This commit is contained in:
Owen
2026-04-13 11:33:39 -07:00
parent 96e33d33b0
commit 9cb1043545
2 changed files with 2 additions and 2 deletions

View File

@@ -200,7 +200,7 @@ async function createHttpResource(
if (build == "saas" && !isSubscribed(orgId!, tierMatrix.domainNamespaces)) { if (build == "saas" && !isSubscribed(orgId!, tierMatrix.domainNamespaces)) {
// grandfather in existing users // grandfather in existing users
const lastAllowedDate = new Date("2026-04-12"); const lastAllowedDate = new Date("2026-04-13");
const userCreatedDate = new Date(req.user?.dateCreated || new Date()); const userCreatedDate = new Date(req.user?.dateCreated || new Date());
if (userCreatedDate > lastAllowedDate) { if (userCreatedDate > lastAllowedDate) {
// check if this domain id is a namespace domain and if so, reject // check if this domain id is a namespace domain and if so, reject

View File

@@ -326,7 +326,7 @@ async function updateHttpResource(
!isSubscribed(resource.orgId, tierMatrix.domainNamespaces) !isSubscribed(resource.orgId, tierMatrix.domainNamespaces)
) { ) {
// grandfather in existing users // grandfather in existing users
const lastAllowedDate = new Date("2026-04-12"); const lastAllowedDate = new Date("2026-04-13");
const userCreatedDate = new Date( const userCreatedDate = new Date(
req.user?.dateCreated || new Date() req.user?.dateCreated || new Date()
); );