Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
Fix loginId not correctly deserialising with existing couchdb token d…
Browse files Browse the repository at this point in the history
…ocuments

Signed-off-by: Eamonn Mansour <[email protected]>
  • Loading branch information
eamansour committed Jul 10, 2024
1 parent bea4f96 commit 859afbc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions galasa-extensions-parent/dev.galasa.auth.couchdb/bnd.bnd
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Bundle-Name: dev.galasa.auth.couchdb
Bundle-Description: A CouchDB implementation of the Galasa Auth Store
Bundle-License: https://www.eclipse.org/legal/epl-2.0
Import-Package: com.google.gson,\
com.google.gson.annotations,\
dev.galasa,\
dev.galasa.framework.spi,\
dev.galasa.framework.spi.auth,\
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,13 @@
*/
package dev.galasa.auth.couchdb.internal;

import com.google.gson.annotations.SerializedName;

import dev.galasa.framework.spi.auth.IInternalUser;

public class CouchdbUser implements IInternalUser {

@SerializedName(value = "loginId", alternate = { "login_id" })
private String loginId;
private String dexUserId;

Expand Down

0 comments on commit 859afbc

Please sign in to comment.