testing remote stuff
This commit is contained in:
parent
1e05d4576d
commit
3c9ccaafeb
374 changed files with 10526 additions and 2037 deletions
|
|
@ -514,11 +514,23 @@ public static class Navigation
|
|||
{
|
||||
public const string Index = "management/hostgroups";
|
||||
public const string Details = "management/hostgroups/{groupId}";
|
||||
public const string Hosts = "management/hostgroups/{groupId}/hosts";
|
||||
public const string HostsAssign = "management/hostgroups/{groupId}/hosts/assign";
|
||||
|
||||
public static string DetailsHref(string? groupId)
|
||||
{
|
||||
return Details.Replace("{groupId}", groupId);
|
||||
}
|
||||
|
||||
public static string HostsHref(string? groupId)
|
||||
{
|
||||
return Hosts.Replace("{groupId}", groupId);
|
||||
}
|
||||
|
||||
public static string HostsAssignHref(string? groupId)
|
||||
{
|
||||
return HostsAssign.Replace("{groupId}", groupId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue