diff options
author | crupest <crupest@outlook.com> | 2020-02-21 15:10:37 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-02-21 15:10:37 +0800 |
commit | 1d5d0c85e24fe9f30d587dc714f1cd7a233c8073 (patch) | |
tree | 57a8579bc8b6d2be2831c8e55d5b5b0f552def35 /Timeline/Configs/JwtConfiguration.cs | |
parent | 6cf3c7891fe8a810b20bb799db9f3fb97414c4de (diff) | |
download | timeline-1d5d0c85e24fe9f30d587dc714f1cd7a233c8073.tar.gz timeline-1d5d0c85e24fe9f30d587dc714f1cd7a233c8073.tar.bz2 timeline-1d5d0c85e24fe9f30d587dc714f1cd7a233c8073.zip |
Move jwt token key from configuration to database and auto generatable.
Diffstat (limited to 'Timeline/Configs/JwtConfiguration.cs')
-rw-r--r-- | Timeline/Configs/JwtConfiguration.cs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Timeline/Configs/JwtConfiguration.cs b/Timeline/Configs/JwtConfiguration.cs index fc27f4ee..af8052de 100644 --- a/Timeline/Configs/JwtConfiguration.cs +++ b/Timeline/Configs/JwtConfiguration.cs @@ -4,7 +4,6 @@ {
public string Issuer { get; set; } = default!;
public string Audience { get; set; } = default!;
- public string SigningKey { get; set; } = default!;
/// <summary>
/// Set the default value of expire offset of jwt token.
|