diff options
Diffstat (limited to 'services/polls/polls.hooks.ts')
-rw-r--r-- | services/polls/polls.hooks.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/services/polls/polls.hooks.ts b/services/polls/polls.hooks.ts index 35eae29..7a5b1da 100644 --- a/services/polls/polls.hooks.ts +++ b/services/polls/polls.hooks.ts @@ -8,6 +8,7 @@ import { PollSchema } from '../../models/polls/poll.schema'; import VoteModel from '../../models/votes/vote.model'; import sortByDate from '../../hooks/sortByDate'; import signAuthority from '../../hooks/signAuthority'; +import fetchImages from '../../hooks/fetchImages'; const convertPoll = async (context: HookContext): Promise<HookContext> => { @@ -53,7 +54,8 @@ export default { patch: disallow('external') }, after: { - all: convertPoll + all: convertPoll, + create: fetchImages(['contents.left.url', 'contents.right.url']) } }; |