mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Added Auth, startup options to UI
Added caching to ConfigFileProvider,
This commit is contained in:
16
UI/Settings/General/GeneralSettingsModel.js
Normal file
16
UI/Settings/General/GeneralSettingsModel.js
Normal file
@@ -0,0 +1,16 @@
|
||||
"use strict";
|
||||
define(['app'], function () {
|
||||
NzbDrone.Settings.General.GeneralSettingsModel = Backbone.Model.extend({
|
||||
url: NzbDrone.Constants.ApiRoot + '/settings/host',
|
||||
|
||||
initialize: function () {
|
||||
this.on('change', function () {
|
||||
this.isSaved = false;
|
||||
}, this);
|
||||
|
||||
this.on('sync', function () {
|
||||
this.isSaved = true;
|
||||
}, this);
|
||||
}
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user