Added a controller and handler for dumping JSON data from git webhooks
This commit is contained in:
10
src/git/gitRepository.js
Normal file
10
src/git/gitRepository.js
Normal file
@@ -0,0 +1,10 @@
|
||||
const assert = require('assert');
|
||||
|
||||
class GitRepository {
|
||||
|
||||
dumpHook(body) {
|
||||
console.log(body);
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = GitRepository;
|
||||
Reference in New Issue
Block a user