Add status message to server config save.

This commit is contained in:
Jared Goodwin 2020-04-05 10:45:17 -07:00
parent 7b7aa3bfc9
commit 22800dde25
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,4 @@
@page
@using Remotely.Server.Areas.Identity.Pages.Account.Manage
@model ServerConfigModel
@{
ViewData["Title"] = "Server Config";

View File

@ -95,6 +95,8 @@ namespace Remotely.Server.Areas.Identity.Pages.Account.Manage
await Task.Delay(10);
}
StatusMessage = "Configuration saved.";
return RedirectToPage();
}