mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-06-09 04:19:43 +00:00
feat(core): Add message of the day
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
(function() {
|
||||
'use strict';
|
||||
|
||||
angular.module('SOGo.AdministrationUI', ['ui.router', 'SOGo.Common', 'SOGo.Authentication', 'SOGo.PreferencesUI', 'SOGo.ContactsUI', 'SOGo.SchedulerUI'])
|
||||
angular.module('SOGo.AdministrationUI', ['ui.router', 'SOGo.Common', 'SOGo.Authentication', 'SOGo.PreferencesUI', 'SOGo.ContactsUI', 'SOGo.SchedulerUI', 'sgCkeditor'])
|
||||
.config(configure)
|
||||
.run(runBlock);
|
||||
|
||||
@@ -56,6 +56,16 @@
|
||||
controllerAs: 'ctrl'
|
||||
}
|
||||
}
|
||||
})
|
||||
.state('administration.motd', {
|
||||
url: '/motd',
|
||||
views: {
|
||||
module: {
|
||||
templateUrl: 'UIxAdministrationMotd', // UI/Templates/Administration/UIxAdministrationMotd.wox
|
||||
controller: 'AdministrationMotdController',
|
||||
controllerAs: 'ctrl'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
// if none of the above states are matched, use this as the fallback
|
||||
|
||||
Reference in New Issue
Block a user