aboutsummaryrefslogtreecommitdiff
path: root/services/profiles/profiles.service.ts
diff options
context:
space:
mode:
Diffstat (limited to 'services/profiles/profiles.service.ts')
-rw-r--r--services/profiles/profiles.service.ts3
1 files changed, 0 insertions, 3 deletions
diff --git a/services/profiles/profiles.service.ts b/services/profiles/profiles.service.ts
index e860426..ae06cf9 100644
--- a/services/profiles/profiles.service.ts
+++ b/services/profiles/profiles.service.ts
@@ -1,10 +1,7 @@
import { Application } from '@feathersjs/express';
import Profiles from './profiles.class';
-import hooks from './profiles.hooks';
-
export default (app: Application): void => {
app.use('/profiles', new Profiles());
- app.service('profiles').hooks(hooks);
};