mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-21 05:43:19 -07:00
This commit is contained in:
parent
29ae064c7a
commit
f7bf2a2fe7
11 changed files with 296 additions and 62 deletions
70
PlexRequests.UI/Views/Admin/UserManagementSettings.cshtml
Normal file
70
PlexRequests.UI/Views/Admin/UserManagementSettings.cshtml
Normal file
|
@ -0,0 +1,70 @@
|
|||
@using PlexRequests.UI.Helpers
|
||||
@inherits Nancy.ViewEngines.Razor.NancyRazorViewBase<PlexRequests.Core.SettingModels.UserManagementSettings>
|
||||
@Html.Partial("_Sidebar")
|
||||
|
||||
<div class="col-sm-8 col-sm-push-1">
|
||||
<form class="form-horizontal" method="POST" id="mainForm">
|
||||
<fieldset>
|
||||
<legend>User Management Settings</legend>
|
||||
|
||||
<span>Here you can manage the default permissions and features that your users get</span>
|
||||
|
||||
|
||||
<h3>Permissions</h3>
|
||||
@Html.Checkbox(Model.RequestMovies, "RequestMovies", "Request Movies");
|
||||
@Html.Checkbox(Model.RequestTvShows, "RequestTvShows", "Request TV Shows");
|
||||
@Html.Checkbox(Model.RequestMusic, "RequestMusic", "Request Music");
|
||||
@Html.Checkbox(Model.AutoApproveMovies, "AutoApproveMovies", "Auto Approve Movie Requests");
|
||||
@Html.Checkbox(Model.AutoApproveTvShows, "AutoApproveTvShows", "Auto Approve TV Show Requests");
|
||||
@Html.Checkbox(Model.AutoApproveMusic, "AutoApproveMusic", "Auto Approve Music Requests");
|
||||
@Html.Checkbox(Model.ReportIssues, "ReportIssues", "Report Issues");
|
||||
|
||||
|
||||
|
||||
<h3>Features</h3>
|
||||
@Html.Checkbox(Model.RecentlyAddedNewsletter, "RecentlyAddedNewsletter", "Recently Added Newsletter");
|
||||
@Html.Checkbox(Model.RecentlyAddedNotification, "RecentlyAddedNotification", "Recently Added Notifications");
|
||||
|
||||
|
||||
|
||||
|
||||
<div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<div>
|
||||
<button type="submit" id="save" class="btn btn-primary-outline">Submit</button>
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
$(function () {
|
||||
$('#save').click(function (e) {
|
||||
e.preventDefault();
|
||||
|
||||
var $form = $("#mainForm");
|
||||
|
||||
var data = $form.serialize();
|
||||
|
||||
$.ajax({
|
||||
type: $form.prop("method"),
|
||||
data: data,
|
||||
url: $form.prop("action"),
|
||||
dataType: "json",
|
||||
success: function (response) {
|
||||
if (response.result === true) {
|
||||
generateNotify("Success!", "success");
|
||||
} else {
|
||||
generateNotify(response.message, "warning");
|
||||
}
|
||||
},
|
||||
error: function (e) {
|
||||
console.log(e);
|
||||
generateNotify("Something went wrong!", "danger");
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue