SystemResourceConstant
object in module d7-services.resources.system

Description

Constant for the System resource

Properties

Example

SystemResourceConstant is editable in config phase

angular
 .module('myModule', ['d7-services.resources.system'])
 .config(function (SystemResourceConstant) {
    SystemResourceConstant.resourcePath = 'my/path';
}

SystemResourceConstant injectable

angular
 .module('myModule', ['d7-services.resources.system'])
 .controller(function (SystemResourceConstant) {
    console.log(SystemResourceConstant.resourcePath);
}