I'm using angular growl service (angular-growl), and i need one method to add growl with specific type, e.g.
.controller('Controller', ['$scope', 'growl', function ($scope, growl) {
growl.add("Message", "INFO");
}
is it possible to append new method to growl service (or append method to any service) when angular start process?