From 97c92306ac06c7caa26f67d6fc5d01bfb9afab63 Mon Sep 17 00:00:00 2001 From: Ilya Date: Sun, 29 Sep 2024 23:47:08 +0300 Subject: [PATCH] changed router params (#244) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Изменения ## Детали реализации ## Check-List - [ ] Вы проверили свой код перед отправкой запроса? - [ ] Вы написали тесты к реализованным функциям? - [ ] Вы не забыли применить форматирование `black` и `isort` для _Back-End_ или `Prettier` для _Front-End_? --- src/router/auth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/router/auth.ts b/src/router/auth.ts index 1c756ee0..31d2a8ae 100644 --- a/src/router/auth.ts +++ b/src/router/auth.ts @@ -45,7 +45,7 @@ export const authHandler: NavigationGuard = async to => { const toastStore = useToastStore(); if (to.path.startsWith('/auth/oauth-authorized')) { - const methodLink = to.params.link; + const methodLink = to.params.method; console.log(methodLink); if (!isAuthMethod(methodLink)) { console.log('failed', methodLink);