My services contain an enum that I need to share with another service's method. How can I pass this enum as a parameter effectively?
home.factory('myService', ['$dialogs', '$resource',
function ($dialogs, $resource) {
var myEnum= {
val1: 0,
val2: 1
};
return {
DoSomething : function (param1) {
...
}
};
}]);