#71: Updated deployed JS file with the new SettingsViewModel

This commit is contained in:
Andy Heathershaw 2018-09-14 11:15:40 +01:00
parent b03ab47039
commit c5ccc4ef9a
1 changed files with 38 additions and 0 deletions

View File

@ -22245,6 +22245,44 @@ function AboutViewModel(urls) {
}
};
}
/**
* This model is used by admin/settings.blade.php.
* @constructor
*/
function SettingsViewModel(urls, lang) {
this.el = '#settings-app';
this.data = {
is_rebuilding_permissions_cache: false
};
this.methods = {
rebuildPermissionsCache: function (e) {
var self = this;
$.ajax(
urls.rebuild_permissions_cache,
{
complete: function() {
self.is_rebuilding_permissions_cache = false;
},
dataType: 'json',
error: function (xhr, textStatus, errorThrown) {
alert(lang.permissions_cache_rebuild_failed);
},
method: 'POST',
success: function (data) {
alert(lang.permissions_cache_rebuild_succeeded);
}
}
);
e.preventDefault();
return false;
}
};
}
/**
* This model is used by admin/analyse_album.blade.php, to analyse all images.
* @constructor