UNPKG

unserver-unify

Version:

21 lines (20 loc) 503 B
'use strict'; angular.module('bamboo.common').service('aklcConfigSvs', aklcConfigSvs); aklcConfigSvs.$inject = []; function aklcConfigSvs() { var self = this; self.getConfig = function() { var config = { UserConfig: { SHOW_CLASS_LIST:true, }, HeaderConfig:{ HIDE_APPLICATIONS:true //hide header->more->application }, LoginFooter:{ companyRights:"©2017 ADAM KHOO LEARNING CENTRE." } }; return config; } }