Skip to content

Commit

Permalink
core: adjust styling to meet our standards (goauthentik#10277)
Browse files Browse the repository at this point in the history
* core: adjust styling to meet our standards

* Fix version correspondence bug in website (goauthentik#10278)

web: update lockfile to correspond to package.json, enabling npm-ci

Looks like someone updated `package.json` to have the latest version
of Typescript, but failed to update `package-lock.json` to get that
version into the cache.  `npm ci` won't work if the versions in the
two files don't correspond, as that means, well, exactly that: no
one has checked that the versioning is correct.

The actual diff to `package-lock.json` is small enough it can be
verified by eye, and it's fine.
  • Loading branch information
kensternberg-authentik authored Jun 27, 2024
1 parent 8adbba6 commit 361765c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
4 changes: 3 additions & 1 deletion authentik/events/signals.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@ def on_login_failed(
):
"""Failed Login, authentik custom event"""
user = User.objects.filter(username=credentials.get("username")).first()
Event.new(EventAction.LOGIN_FAILED, **credentials, stage=stage, **kwargs).from_http(request, user)
Event.new(EventAction.LOGIN_FAILED, **credentials, stage=stage, **kwargs).from_http(
request, user
)


@receiver(invitation_used)
Expand Down
5 changes: 0 additions & 5 deletions website/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 361765c

Please sign in to comment.