From d61c375fc8675703b58730a514d4d0bcfb23b2b8 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Sun, 19 Jun 2022 22:22:23 +0530 Subject: [PATCH 1/3] fix: fixes @ subdomain record creation --- utils/domain-service.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/domain-service.js b/utils/domain-service.js index 7829e7431..81421f7aa 100644 --- a/utils/domain-service.js +++ b/utils/domain-service.js @@ -14,7 +14,7 @@ const recordToRedirection = ({ name, address }) => ({ }); const recordToZone = ({ name, type, address, id, priority }) => ({ line: id, - name, + name: name === '@' ? `${DOMAIN_DOMAIN}.` : name, type, address, ...(type === 'MX' ? { priority } : {}), @@ -79,7 +79,7 @@ const executeBatch = (batches) => batches.reduce((promise, batch, index) => { const failed = results.filter(x => (x.result || {}).status != 1); log(`${values.length - failed.length}/${values.length}`); - failed.length && log(failed); + failed.length && log(JSON.stringify(failed, null, 2)); return null; }); From 535a0835b4a91e3c7ff4e83018316d7f5239547e Mon Sep 17 00:00:00 2001 From: andrewstech Date: Mon, 20 Jun 2022 20:43:41 +0100 Subject: [PATCH 2/3] Add branded urls to firebase auth --- domains/auth.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 domains/auth.json diff --git a/domains/auth.json b/domains/auth.json new file mode 100644 index 000000000..b9b748a4f --- /dev/null +++ b/domains/auth.json @@ -0,0 +1,10 @@ + { + "owner": { + "username": "andrewstech", + "email": "andrew@win11react.com" + }, + "record": { + "A": ["199.36.158.100"] + } + } + From 77a831cfb016f713710a3de2ee56914e600bdd60 Mon Sep 17 00:00:00 2001 From: Mahir Molai Date: Tue, 21 Jun 2022 01:10:14 +0500 Subject: [PATCH 3/3] Update auth.json --- domains/auth.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/domains/auth.json b/domains/auth.json index b9b748a4f..36646103a 100644 --- a/domains/auth.json +++ b/domains/auth.json @@ -1,7 +1,7 @@ { "owner": { - "username": "andrewstech", - "email": "andrew@win11react.com" + "username": "@is-a-dev/maintainers", + "email": "mahir@molai.dev" }, "record": { "A": ["199.36.158.100"]