SystemChannelConstant
d7-services.resources.system
Constant for the System channel
SystemChannelConstant is editable in config phase
angular
.module('myModule', ['d7-services.resources.system'])
.config(function (SystemChannelConstant) {
SystemChannelConstant.connectConfirmed = 'MY_EVENT_NAME';
}
SystemChannelConstant injectable
angular
.module('myModule', ['d7-services.resources.system'])
.controller(function (SystemChannelConstant) {
console.log(SystemChannelConstant.connectConfirmed);
}