blob: 04f3af16d44161ac0b57af8bf05b47e4a4c105ab (
plain)
1
2
3
4
5
6
7
8
9
10
|
import { HookContext } from '@feathersjs/feathers';
import requireAuth from '../../hooks/requireAuth';
import signAuthority from '../../hooks/signAuthority';
export default {
before: {
create: [requireAuth, signAuthority]
}
};
|