Skip to content

Commit

Permalink
Fix /api/clients API broken by #12
Browse files Browse the repository at this point in the history
  • Loading branch information
SteDev2 committed Jul 11, 2024
1 parent 781b10c commit 3994afa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public class ClientDetailsEntity implements ClientDetails {
private Date createdAt; // time the client was created
private boolean clearAccessTokensOnRefresh = true; // do we clear access tokens on refresh?
private Integer deviceCodeValiditySeconds; // timeout for device codes
private ClientLastUsedEntity clientLastUsed; // last used info
private transient ClientLastUsedEntity clientLastUsed; // last used info
private boolean active = true;
private Date statusChangedOn;
private String statusChangedBy;
Expand Down

0 comments on commit 3994afa

Please sign in to comment.