Skip to content

Commit

Permalink
Merge pull request #71 from wwWallet/openid4vci/remember-duration
Browse files Browse the repository at this point in the history
Remember duration options
  • Loading branch information
kkmanos authored Oct 29, 2024
2 parents 86b0737 + aba842f commit 07a675c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/entities/user.entity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ class UserEntity {
@OneToMany(() => FcmTokenEntity, (fcmToken) => fcmToken.user, { eager: true })
fcmTokenList: FcmTokenEntity[];

@Column({ nullable: false, default: 3600 })
@Column({ nullable: false, default: 0 })
openidRefreshTokenMaxAgeInSeconds: number;
}

Expand Down

0 comments on commit 07a675c

Please sign in to comment.