diff options
author | crupest <crupest@outlook.com> | 2019-02-20 18:23:05 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-02-20 18:23:05 +0800 |
commit | 2bcdc32c4c6d37a6d40aa4fdfc7b04478a76e961 (patch) | |
tree | da41fde0f5c7717f9e7665225015326bf99a0321 /Timeline/Startup.cs | |
parent | 133b90cdbafabab0640bfb3179899fb4f3df4dbe (diff) | |
download | timeline-2bcdc32c4c6d37a6d40aa4fdfc7b04478a76e961.tar.gz timeline-2bcdc32c4c6d37a6d40aa4fdfc7b04478a76e961.tar.bz2 timeline-2bcdc32c4c6d37a6d40aa4fdfc7b04478a76e961.zip |
Move some config of todo page to server side.
Diffstat (limited to 'Timeline/Startup.cs')
-rw-r--r-- | Timeline/Startup.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Timeline/Startup.cs b/Timeline/Startup.cs index a6bde7fd..e06a98d5 100644 --- a/Timeline/Startup.cs +++ b/Timeline/Startup.cs @@ -41,7 +41,7 @@ namespace Timeline }); - services.Configure<TodoListConfig>(Configuration.GetSection("TodoListConfig")); + services.Configure<TodoPageConfig>(Configuration.GetSection("TodoPageConfig")); services.Configure<JwtConfig>(Configuration.GetSection("JwtConfig")); var jwtConfig = Configuration.GetSection("JwtConfig").Get<JwtConfig>(); |