diff options
| author | crupest <crupest@outlook.com> | 2020-02-21 11:59:58 +0800 |
|---|---|---|
| committer | crupest <crupest@outlook.com> | 2020-02-21 11:59:58 +0800 |
| commit | 6cf3c7891fe8a810b20bb799db9f3fb97414c4de (patch) | |
| tree | a143ff8698660608d188428957a1ad56d620cca6 /Timeline/Configs | |
| parent | e6a153380c720e386137904498b78b5488868f13 (diff) | |
| download | timeline-6cf3c7891fe8a810b20bb799db9f3fb97414c4de.tar.gz timeline-6cf3c7891fe8a810b20bb799db9f3fb97414c4de.tar.bz2 timeline-6cf3c7891fe8a810b20bb799db9f3fb97414c4de.zip | |
Migrate to use sqlite.
Diffstat (limited to 'Timeline/Configs')
| -rw-r--r-- | Timeline/Configs/DatabaseConfig.cs | 11 | ||||
| -rw-r--r-- | Timeline/Configs/JwtConfiguration.cs (renamed from Timeline/Configs/JwtConfig.cs) | 4 |
2 files changed, 2 insertions, 13 deletions
diff --git a/Timeline/Configs/DatabaseConfig.cs b/Timeline/Configs/DatabaseConfig.cs deleted file mode 100644 index e1231bcd..00000000 --- a/Timeline/Configs/DatabaseConfig.cs +++ /dev/null @@ -1,11 +0,0 @@ -namespace Timeline.Configs
-{
- public class DatabaseConfig
- {
- public bool UseDevelopment { get; set; } = false;
-
- public string ConnectionString { get; set; } = default!;
-
- public string DevelopmentConnectionString { get; set; } = default!;
- }
-}
diff --git a/Timeline/Configs/JwtConfig.cs b/Timeline/Configs/JwtConfiguration.cs index 8a17825e..fc27f4ee 100644 --- a/Timeline/Configs/JwtConfig.cs +++ b/Timeline/Configs/JwtConfiguration.cs @@ -1,6 +1,6 @@ -namespace Timeline.Configs
+namespace Timeline.Configs
{
- public class JwtConfig
+ public class JwtConfiguration
{
public string Issuer { get; set; } = default!;
public string Audience { get; set; } = default!;
|
