Skip to content

Commit

Permalink
update the default openidRefreshTokenMaxAgeInSeconds to match the fro…
Browse files Browse the repository at this point in the history
…ntend's first value of the dropdown
  • Loading branch information
kkmanos committed Oct 25, 2024
1 parent 0f17ff7 commit 8c3082c
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: 60 })
@Column({ nullable: false, default: 3600 })
openidRefreshTokenMaxAgeInSeconds: number;
}

Expand Down

0 comments on commit 8c3082c

Please sign in to comment.