Browse Source

implement other types of webhooks

master
Nicolas Massé 9 years ago
parent
commit
b976b21736
  1. 5
      server.js

5
server.js

@ -19,8 +19,11 @@ if (shared_secret == null || shared_secret == "") {
my_url += util.format("?shared_secret=%s", encodeURIComponent(shared_secret));
}
//
var handler_registry = {
application: []
application: [],
user: [],
account: []
};
// Register and init all handlers

Loading…
Cancel
Save