Skip to content

Commit

Permalink
login event types
Browse files Browse the repository at this point in the history
  • Loading branch information
cgeorgilakis committed Jul 28, 2023
1 parent b071716 commit e2786b6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ Our Keycloak version is working well with PostgreSQL database. For using other S
- Fix autoupdate schedule task stuck [trello card](https://trello.com/c/m2WM3bSQ/1974-saml-client-metadata-update-problem-fe-https-aai-devegieu-auth-admin-master-console-realms-egi-clients-1fa52476-73dd-4ab9-b6fd-7)
- Execution config not duplicated when duplicating flows [GITHUB-12012](https://github.com/keycloak/keycloak/issues/12012)

### Added
- Login events type for add, remove, suspend user from a group [RCIAM-1292](https://jira.argo.grnet.gr/browse/RCIAM-1292)

## [18.0.1-2.14] - 2023-07-05

### Fixed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,11 @@ public enum EventType {

// PAR request.
PUSHED_AUTHORIZATION_REQUEST(false),
PUSHED_AUTHORIZATION_REQUEST_ERROR(false);
PUSHED_AUTHORIZATION_REQUEST_ERROR(false),
GROUP_MEMBERSHIP_CREATE(true),
GROUP_MEMBERSHIP_UPDATE(true),
GROUP_MEMBERSHIP_DELETE(true),
GROUP_MEMBERSHIP_SUSPEND(true);


private boolean saveByDefault;
Expand Down

0 comments on commit e2786b6

Please sign in to comment.