##// END OF EJS Templates
ini: disable secure cookie by default
ini: disable secure cookie by default

File last commit:

r147:bb4c1b51
r194:6ba6bd93 2.0.0rc1
Show More
settings-view.js
29 lines | 1.1 KiB | application/javascript | JavascriptLexer
license: change the license to Apache 2.0
r112 // Copyright 2010 - 2017 RhodeCode GmbH and the AppEnlight project authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
components: componentize user-profile, settings-view, user-identities
r79
angular.module('appenlight.components.settingsView', [])
.component('settingsView', {
templateUrl: 'components/views/settings-view/settings-view.html',
controller: SettingsViewController
});
frontend: move link definitions to javascript layer
r91 SettingsViewController.$inject = ['$state', 'AeConfig'];
components: componentize user-profile, settings-view, user-identities
r79
frontend: move link definitions to javascript layer
r91 function SettingsViewController($state, AeConfig) {
frontend: angular 1.7.7
r147 this.$onInit = function () {
this.$state = $state;
this.AeConfig = AeConfig;
console.info('SettingsViewController');
}
components: componentize user-profile, settings-view, user-identities
r79 }