We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d49d539 commit ab827e3Copy full SHA for ab827e3
src/Controllers/HooksController.js
@@ -59,7 +59,9 @@ export class HooksController {
59
}
60
61
_removeHooks(query) {
62
- return this.database.destroy(DefaultHooksCollectionName, query);
+ return this.database.destroy(DefaultHooksCollectionName, query).then(() => {
63
+ return Promise.resolve({});
64
+ });
65
66
67
saveHook(hook) {
0 commit comments