mirror of
https://github.com/bitinflow/nuxt-oauth.git
synced 2026-03-13 21:56:00 +00:00
Compare commits
2 Commits
v2.0.1
...
envoyr-pat
| Author | SHA1 | Date | |
|---|---|---|---|
| a77e689b38 | |||
|
|
3ce7d64d50 |
14
CHANGELOG.md
14
CHANGELOG.md
@@ -3,18 +3,28 @@
|
||||
|
||||
## v2.0.1
|
||||
|
||||
Typo fixes in the GitHub/NPM repo
|
||||
|
||||
## v2.0.0
|
||||
|
||||
## v1.0.6
|
||||
Support for Authorization Code Grant with PKCE
|
||||
|
||||
## v1.0.5
|
||||
## v1.0.5 - v1.0.6
|
||||
|
||||
Fix for CookieRef when using watch(...)
|
||||
|
||||
## v1.0.4
|
||||
|
||||
Minor fixes
|
||||
|
||||
## v1.0.3
|
||||
|
||||
Minor fixes
|
||||
|
||||
## v1.0.2
|
||||
|
||||
Minor fixes
|
||||
|
||||
## v1.0.0
|
||||
|
||||
Initial Release
|
||||
|
||||
@@ -74,7 +74,7 @@ export default defineNuxtPlugin(() => {
|
||||
addRouteMiddleware('auth', async (to) => {
|
||||
const {user, authConfig, setBearerToken, setRefreshToken} = await useAuth()
|
||||
|
||||
if (to.path === authConfig.redirect.callback) {
|
||||
if (to.path === authConfig.redirect.callback || to.path === authConfig.redirect.callback + '/') {
|
||||
const queryParams = new URLSearchParams(to.query.toString());
|
||||
if (queryParams.has('error')) {
|
||||
return navigateTo(authConfig.redirect.login)
|
||||
|
||||
Reference in New Issue
Block a user