aboutsummaryrefslogtreecommitdiff
path: root/services/votes/votes.hooks.ts
blob: 56e90005a69fe4f202e8da021b587ce524eef5fc (plain)
1
2
3
4
5
6
7
8
9
import requireAuth from '../../hooks/requireAuth';
import signAuthority from '../../hooks/signAuthority';

export default {
  before: {
    create: [requireAuth, signAuthority]
  }
};