mirror of
https://framagit.org/framasoft/framaspace/argos.git
synced 2025-04-28 18:02:41 +02:00
🐛 — Fix bug in login view when having a cookie (internal server error)
This commit is contained in:
parent
1c314c4460
commit
058622556d
3 changed files with 6 additions and 4 deletions
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
- 🐛 — Fix bug in login view when having a cookie (internal server error)
|
||||||
|
|
||||||
## 0.2.0
|
## 0.2.0
|
||||||
|
|
||||||
Date: 2024-06-24
|
Date: 2024-06-24
|
||||||
|
|
|
@ -30,7 +30,7 @@ SEVERITY_LEVELS = {"ok": 1, "warning": 2, "critical": 3, "unknown": 4}
|
||||||
async def login_view(request: Request, msg: str | None = None):
|
async def login_view(request: Request, msg: str | None = None):
|
||||||
token = request.cookies.get("access-token")
|
token = request.cookies.get("access-token")
|
||||||
if token is not None:
|
if token is not None:
|
||||||
manager = get_manager(request)
|
manager = request.app.state.manager
|
||||||
user = await manager.get_current_user(token)
|
user = await manager.get_current_user(token)
|
||||||
if user is not None:
|
if user is not None:
|
||||||
return RedirectResponse(
|
return RedirectResponse(
|
||||||
|
|
|
@ -24,13 +24,13 @@ git checkout main
|
||||||
make test
|
make test
|
||||||
|
|
||||||
# Bump the version, according to semantic versionning
|
# Bump the version, according to semantic versionning
|
||||||
hatch version minor # or `hatch version major`
|
hatch version minor # or `hatch version major`, or `hatch version fix`
|
||||||
|
|
||||||
# Modify the changelog
|
# Modify the changelog
|
||||||
editor CHANGELOG.md
|
editor CHANGELOG.md
|
||||||
|
|
||||||
# Commit the change
|
# Commit the change
|
||||||
git add argos/__init__.py CHANGELOG
|
git add argos/__init__.py CHANGELOG.md
|
||||||
git commit -m "🏷 — Bump version ($(hatch version))"
|
git commit -m "🏷 — Bump version ($(hatch version))"
|
||||||
|
|
||||||
# Create a tag on the git repository and push it
|
# Create a tag on the git repository and push it
|
||||||
|
@ -45,7 +45,7 @@ hatch publish
|
||||||
|
|
||||||
Aditionnaly, ensure it works well in a new environment.
|
Aditionnaly, ensure it works well in a new environment.
|
||||||
|
|
||||||
Then go to https://framagit.org/framasoft/framaspace/argos/-/releases to create a new release for the new tag.
|
Then go to <https://framagit.org/framasoft/framaspace/argos/-/releases> to create a new release for the new tag.
|
||||||
Use CHANGELOG.md content for that.
|
Use CHANGELOG.md content for that.
|
||||||
|
|
||||||
## Bumping the version number
|
## Bumping the version number
|
||||||
|
|
Loading…
Reference in a new issue