refactor (networking)

This commit is contained in:
Kevin Kai Berthold 2023-09-21 22:10:55 +02:00
parent febc4d9488
commit 450a6f2796
153 changed files with 7834 additions and 8004 deletions

View file

@ -20,7 +20,7 @@ public static class Navigation
public const string Logout = "account/logout";
public const string Lockout = "account/lockout";
public const string Profile = "account/profile";
public const string ChangePassword = "account/changepassword";
public const string ChangePassword = "account/changepassword";
public static string LoginHref(string redirect)
{
@ -106,7 +106,7 @@ public static class Navigation
{
public const string Index = "management/accounts";
public const string Details = "management/accounts/{accountId}";
public static string DetailsHref(string? accountId)
{
return Details.Replace("{accountId}", accountId);