diff options
author | 杨宇千 <crupest@outlook.com> | 2019-07-23 16:47:53 +0800 |
---|---|---|
committer | 杨宇千 <crupest@outlook.com> | 2019-07-23 16:47:53 +0800 |
commit | 6191dbfdfa4f048e2f5a78729b49c8cf8a654ae3 (patch) | |
tree | 2740cfa1964024d080d1b842b20e918a3e8d8981 /Timeline/Configs/JwtConfig.cs | |
parent | 918b685ad99a5abd430c9f9ae5a18bd296a32df9 (diff) | |
download | timeline-6191dbfdfa4f048e2f5a78729b49c8cf8a654ae3.tar.gz timeline-6191dbfdfa4f048e2f5a78729b49c8cf8a654ae3.tar.bz2 timeline-6191dbfdfa4f048e2f5a78729b49c8cf8a654ae3.zip |
WIP: Develop UserService. Remove unused components.
Diffstat (limited to 'Timeline/Configs/JwtConfig.cs')
-rw-r--r-- | Timeline/Configs/JwtConfig.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Timeline/Configs/JwtConfig.cs b/Timeline/Configs/JwtConfig.cs index 1b395650..4d5ef97f 100644 --- a/Timeline/Configs/JwtConfig.cs +++ b/Timeline/Configs/JwtConfig.cs @@ -8,8 +8,8 @@ namespace Timeline.Configs /// <summary> /// Set the default value of expire offset of jwt token. - /// Unit is second. Default is 3600 seconds, aka 1 hour. + /// Unit is second. Default is 3600 * 24 seconds, aka 1 day. /// </summary> - public long DefaultExpireOffset { get; set; } = 3600; + public long DefaultExpireOffset { get; set; } = 3600 * 24; } } |