mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -07:00
User management
This commit is contained in:
parent
e77add75a1
commit
d75e309e18
8 changed files with 88 additions and 41 deletions
|
@ -206,6 +206,20 @@ namespace PlexRequests.UI.Helpers
|
|||
return helper.Raw(asset);
|
||||
}
|
||||
|
||||
|
||||
public static IHtmlString LoadUserManagementAssets(this HtmlHelpers helper)
|
||||
{
|
||||
var assetLocation = GetBaseUrl();
|
||||
var content = GetContentUrl(assetLocation);
|
||||
|
||||
var controller = $"<script src=\"{content}/Content/app/userManagement/userManagementController.js?v={Assembly}\" type=\"text/javascript\"></script>";
|
||||
controller += $"<script src=\"{content}/Content/app/userManagement/userManagementService.js?v={Assembly}\" type=\"text/javascript\"></script>";
|
||||
|
||||
|
||||
return helper.Raw(controller);
|
||||
}
|
||||
|
||||
|
||||
public static IHtmlString LoadTableAssets(this HtmlHelpers helper)
|
||||
{
|
||||
var sb = new StringBuilder();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue