mirror of
https://github.com/bitinflow/nuxt-oauth.git
synced 2026-03-13 21:56:00 +00:00
Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
eff160b3c5 | ||
|
|
464e72535b | ||
| a77e689b38 | |||
|
|
3ce7d64d50 | ||
|
|
6864194251 | ||
|
|
fc4abb27d5 |
18
CHANGELOG.md
18
CHANGELOG.md
@@ -1,18 +1,32 @@
|
||||
# Changelog
|
||||
|
||||
|
||||
## v2.0.2
|
||||
|
||||
## v2.0.1
|
||||
|
||||
## v1.0.6
|
||||
Typo fixes in the GitHub/NPM repo
|
||||
|
||||
## v1.0.5
|
||||
## v2.0.0
|
||||
|
||||
Support for Authorization Code Grant with PKCE
|
||||
|
||||
## 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
|
||||
|
||||
@@ -82,7 +82,7 @@ export default defineNuxtConfig({
|
||||
|
||||
This will be your callback url (host is determined by `window.location.origin`):
|
||||
|
||||
- Callback: `http://localhost:3000/auth/login`
|
||||
- Callback: `http://localhost:3000/login`
|
||||
|
||||
That's it! You can now use @bitinflow/nuxt-oauth in your Nuxt app ✨
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bitinflow/nuxt-oauth",
|
||||
"version": "2.0.1",
|
||||
"version": "2.0.2",
|
||||
"description": "Nuxt 3 OAuth Module",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
@@ -21,7 +21,8 @@
|
||||
"dev": "nuxi dev playground",
|
||||
"dev:build": "nuxi build playground",
|
||||
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
|
||||
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish --access public && git push --follow-tags",
|
||||
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && git push --follow-tags",
|
||||
"push": "npm publish --access public",
|
||||
"lint": "eslint .",
|
||||
"test": "vitest run",
|
||||
"test:watch": "vitest watch"
|
||||
|
||||
@@ -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