Skip to content

Commit 7eefedb

Browse files
committed
update auth url
1 parent 31e55f7 commit 7eefedb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext-src/extension.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ function retrieveUserSettings(accessScope: string, valueToRetreive: string): str
5454

5555
async function verifyUserToken(appId: string, email: string): Promise<boolean> {
5656
try {
57-
const r = await axios.post("https://newauth.ethco.de/user/token/app/verify", {
57+
const r = await axios.post("https://auth.ethco.de/user/token/app/verify", {
5858
email,
5959
app_id: appId,
6060
});
@@ -349,7 +349,7 @@ class ReactPanel {
349349
})
350350
if (token || email) {
351351
const appId = uuid();
352-
await axios.post('https://newauth.ethco.de/user/token/app/add', {
352+
await axios.post('https://auth.ethco.de/user/token/app/add', {
353353
email,
354354
app_id: appId,
355355
token

0 commit comments

Comments
 (0)