aboutsummaryrefslogtreecommitdiff
path: root/services/polls/polls.hooks.ts
diff options
context:
space:
mode:
Diffstat (limited to 'services/polls/polls.hooks.ts')
-rw-r--r--services/polls/polls.hooks.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/services/polls/polls.hooks.ts b/services/polls/polls.hooks.ts
index 9f2183f..e3d04e7 100644
--- a/services/polls/polls.hooks.ts
+++ b/services/polls/polls.hooks.ts
@@ -6,6 +6,7 @@ import { Poll } from 'which-types';
import { PollSchema } from '../../models/polls/poll.schema';
import VoteModel from '../../models/votes/vote.model';
import sortByDate from '../../hooks/sortByDate';
+import signAuthority from '../../hooks/signAuthority';
const convertPoll = async (context: HookContext): Promise<HookContext> => {
@@ -44,7 +45,8 @@ const convertPoll = async (context: HookContext): Promise<HookContext> => {
export default {
before: {
- find: sortByDate
+ find: sortByDate,
+ create: signAuthority
},
after: {
all: convertPoll