Skip to content

Commit

Permalink
0.178.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wbouvy committed Jan 23, 2024
1 parent c78242c commit 4982c36
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog Hiber API

### 0.178 (2024-01-23)

##### TokenService

- Fix a bug where the user id would not be set in the details if the user does not exists in the organization.
(Other details are still omitted when the user is not in the organization)

### 0.177 (2024-01-16)

##### ModemMessagePayloadParserService
Expand Down
5 changes: 4 additions & 1 deletion event-json-examples/token-created.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@
"MODEMS",
"USERS",
"USERS_MANAGE"
]
],
"userDetails": {
"id": "user-identifier"
}
},
"title": "Token your-token (id 1) was created.",
"description": "Token your-token (id 1) was created.",
Expand Down
5 changes: 4 additions & 1 deletion event-json-examples/token-deleted.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@
"MODEMS",
"USERS",
"USERS_MANAGE"
]
],
"userDetails": {
"id": "user-identifier"
}
},
"title": "Token your-token (id 1) was deleted.",
"description": "Token your-token (id 1) was deleted.",
Expand Down
5 changes: 4 additions & 1 deletion event-json-examples/token-expired.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@
"MODEMS",
"USERS",
"USERS_MANAGE"
]
],
"userDetails": {
"id": "user-identifier"
}
},
"title": "Token your-token (id 1) has expired.",
"description": "Token your-token (id 1) has expired.",
Expand Down
5 changes: 4 additions & 1 deletion event-json-examples/token-expiry-warning.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@
"MODEMS",
"USERS",
"USERS_MANAGE"
]
],
"userDetails": {
"id": "user-identifier"
}
},
"title": "Token your-token (id 1) will expire in 14 days.",
"description": "Token your-token (id 1) will expire in 14 days.",
Expand Down

0 comments on commit 4982c36

Please sign in to comment.