Skip to content

Commit

Permalink
Merge pull request #115 from usdot-jpo-ode/cvmanager-keycloak-changes
Browse files Browse the repository at this point in the history
Updates from CVManager keycloak integration
  • Loading branch information
John-Wiens authored Nov 14, 2024
2 parents f02f235 + 9f7d648 commit ba6b432
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 19 deletions.
2 changes: 1 addition & 1 deletion jpo-conflictmonitor
Submodule jpo-conflictmonitor updated from eb1912 to 88afe5

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import lombok.Setter;
import lombok.ToString;


@ToString
@Setter
@EqualsAndHashCode
Expand All @@ -21,8 +20,8 @@ public class UserOrganization {

@Id
private int user_organization_id;
private UUID user_id;
private int user_id;
private int organization_id;
private int role_id;

}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import lombok.Setter;
import lombok.ToString;


@ToString
@Setter
@EqualsAndHashCode
Expand All @@ -20,11 +19,12 @@
public class Users {

@Id
private UUID user_id;
private int user_id;
private UUID keycloak_id;
private String email;
private String first_name;
private String last_name;
private long created_timestamp;
private boolean super_user;

}

0 comments on commit ba6b432

Please sign in to comment.