Merge pull request #1879 from emanuelschuetze/templateIssues
Send option request for config page just once (Fixes #1813)
This commit is contained in:
commit
338f4ce0a1
@ -281,11 +281,20 @@ angular.module('OpenSlidesApp.core', [
|
||||
])
|
||||
|
||||
.factory('Config', [
|
||||
'$http',
|
||||
'DS',
|
||||
function(DS) {
|
||||
function($http, DS) {
|
||||
var configOptions;
|
||||
return DS.defineResource({
|
||||
name: 'core/config',
|
||||
idAttribute: 'key',
|
||||
configOptions: configOptions,
|
||||
getConfigOptions: function () {
|
||||
if (!this.configOptions) {
|
||||
this.configOptions = $http({ 'method': 'OPTIONS', 'url': '/rest/core/config/' });
|
||||
}
|
||||
return this.configOptions;
|
||||
},
|
||||
});
|
||||
}
|
||||
])
|
||||
|
@ -219,8 +219,8 @@ angular.module('OpenSlidesApp.core.site', [
|
||||
url: '/config',
|
||||
controller: 'ConfigCtrl',
|
||||
resolve: {
|
||||
configOption: function($http) {
|
||||
return $http({ 'method': 'OPTIONS', 'url': '/rest/core/config/' });
|
||||
configOptions: function(Config) {
|
||||
return Config.getConfigOptions();
|
||||
}
|
||||
}
|
||||
})
|
||||
@ -436,10 +436,10 @@ angular.module('OpenSlidesApp.core.site', [
|
||||
.controller('ConfigCtrl', [
|
||||
'$scope',
|
||||
'Config',
|
||||
'configOption',
|
||||
function($scope, Config, configOption) {
|
||||
'configOptions',
|
||||
function($scope, Config, configOptions) {
|
||||
Config.bindAll({}, $scope, 'configs');
|
||||
$scope.configGroups = configOption.data.config_groups;
|
||||
$scope.configGroups = configOptions.data.config_groups;
|
||||
|
||||
// save changed config value
|
||||
$scope.save = function(key, value) {
|
||||
|
@ -5,7 +5,8 @@
|
||||
</div>
|
||||
|
||||
<div class="details">
|
||||
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
|
||||
<div os-perms="core.can_manage_config" class="panel-group" id="accordion"
|
||||
role="tablist" aria-multiselectable="true">
|
||||
<!-- generate config groups -->
|
||||
<div ng-repeat="group in configGroups">
|
||||
<div class="panel panel-default">
|
||||
|
Loading…
Reference in New Issue
Block a user