add mapping for ManuallyPostData method (housekeeping)

correct 20 minute swipe event blocker and change to 3 min.
This commit is contained in:
Chris.Watts90@outlook.com 2017-02-23 16:55:13 +00:00
parent 0591407567
commit caa7408465
3 changed files with 6 additions and 4 deletions

View File

@ -2,8 +2,8 @@
<configuration>
<appSettings>
<add key="NLogConfigFilePath" value="Configs/NLogConfig.xml" />
<add key="DefaultPageSize" value="20"/>
<add key="SwipeTimeGap" value="20"/>
<add key="DefaultPageSize" value="20" />
<add key="SwipeTimeGap" value="20" />
</appSettings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />

View File

@ -49,6 +49,8 @@ namespace WindowsDataCenter
/// </summary>
/// <param name="log"></param>
/// <returns></returns>
[HttpPost]
[Route("manual")]
public IHttpActionResult ManuallyPostData([FromBody] ManualLog log)
{
throw new NotImplementedException();

View File

@ -2,8 +2,8 @@
<configuration>
<appSettings>
<add key="NLogConfigFilePath" value="Configs/NLogConfig.xml" />
<add key="DefaultPageSize" value="20"/>
<add key="SwipeTimeGap" value="20"/>
<add key="DefaultPageSize" value="20" />
<add key="SwipeTimeGap" value="20" />
</appSettings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />