1
0
Fork 0
mirror of synced 2024-07-04 14:01:27 +12:00

Fixing issue found by Mitch, with syncing not functioning for singular role updates.

This commit is contained in:
mike12345567 2021-11-15 16:42:17 +00:00
parent 3a8e08d3cc
commit ce47eb6cff

View file

@ -115,17 +115,17 @@ exports.syncUser = async function (ctx) {
tableId: InternalTables.USER_METADATA, tableId: InternalTables.USER_METADATA,
} }
} }
let combined let combined = !deleting
if (deleting) { ? combineMetadataAndUser(user, metadata)
combined = { : {
...metadata, ...metadata,
status: UserStatus.INACTIVE, status: UserStatus.INACTIVE,
metadata: BUILTIN_ROLE_IDS.PUBLIC, metadata: BUILTIN_ROLE_IDS.PUBLIC,
} }
} else { // if its null then there was no updates required
combined = combineMetadataAndUser(user, metadata) if (combined) {
await db.put(combined)
} }
await db.put(combined)
} }
} }
ctx.body = { ctx.body = {