We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6b65dfa + 03aedec commit 7e685d1Copy full SHA for 7e685d1
βpackage.jsonβ
@@ -1,6 +1,6 @@
1
{
2
"name": "@unocha/hpc-api-core",
3
- "version": "15.1.0",
+ "version": "15.1.1",
4
"description": "Core libraries supporting HPC.Tools API Backend",
5
"license": "Apache-2.0",
6
"private": false,
βsrc/auth/index.tsβ
@@ -151,10 +151,8 @@ export const getLoggedInParticipant = async (
151
});
152
153
if (participant) {
154
- const otherSubProperty = isEntraIDToken ? 'hidSub' : 'entraId';
155
-
156
await models.participant.update({
157
- values: { [otherSubProperty]: sub },
+ values: { [subProperty]: sub },
158
where: { id: participant.id },
159
160
}
0 commit comments