Skip to content

Commit

Permalink
changed router params (#244)
Browse files Browse the repository at this point in the history
## Изменения
<!-- Опишите здесь на языке, понятном каждому, изменения, сделанные в
исходном коде по пунктам. -->

## Детали реализации
<!-- Здесь можно описать технические детали по пунктам. -->

## Check-List
<!-- После сохранения у следующих полей появятся галочки, которые нужно
проставить мышкой -->
- [ ] Вы проверили свой код перед отправкой запроса?
- [ ] Вы написали тесты к реализованным функциям?
- [ ] Вы не забыли применить форматирование `black` и `isort` для
_Back-End_ или `Prettier` для _Front-End_?
  • Loading branch information
BatuevIO authored Sep 29, 2024
1 parent dc61875 commit 97c9230
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/router/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 97c9230

Please sign in to comment.