Ben Orozco

Results 91 comments of Ben Orozco

Hi, I would like to know as well how extensibility works

Might be related to: https://github.com/hubot-scripts/hubot-github-repo-event-notifier/issues/23 Maybe having a way to override `eventActions`, would something like this works?: ```javascript _ = require('lodash'); //... eventActions = require('./event-actions/all') customConsumerActions = require('utils/custom-actions'); _assign(eventActions, customConsumerActions);...

How it works: Simply place your "custom actions" module inside `scripts/github/custom-actions.js` on your hubot's project root and **override** desired actions like this: ```javascript module.exports = { release: function(adapter, data, cb)...

@patcon @parkr Any feedback on this? Let me know if you need any kind of help!

@patcon @parkr ping ❤️

There aare several ways of placing http interceptors, it depends what suits best your app workflow, [there are plenty of resources](https://www.google.com/search?q=angular+interceptors), in the end it doesn't have anything to do...

As I said, [there are plenty of resources](https://www.google.com/search?q=angular+interceptors): https://docs.angularjs.org/api/ng/service/$http#interceptors http://www.webdeveasy.com/interceptors-in-angularjs-and-useful-examples/

Wouldn't `loadingPromise.reject();` do the trick?