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 | d088a03986713a71e274fc16144ca42b7f020e3f (patch) | |
tree | 2740cfa1964024d080d1b842b20e918a3e8d8981 /Timeline/Configs | |
parent | 35300c1b1ce6377393d4c9353416daae23b6d17c (diff) | |
download | timeline-d088a03986713a71e274fc16144ca42b7f020e3f.tar.gz timeline-d088a03986713a71e274fc16144ca42b7f020e3f.tar.bz2 timeline-d088a03986713a71e274fc16144ca42b7f020e3f.zip |
WIP: Develop UserService. Remove unused components.
Diffstat (limited to 'Timeline/Configs')
-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; } } |