aboutsummaryrefslogtreecommitdiff
path: root/services/profiles/profiles.class.ts
diff options
context:
space:
mode:
Diffstat (limited to 'services/profiles/profiles.class.ts')
-rw-r--r--services/profiles/profiles.class.ts19
1 files changed, 15 insertions, 4 deletions
diff --git a/services/profiles/profiles.class.ts b/services/profiles/profiles.class.ts
index 52d6b47..564e2a6 100644
--- a/services/profiles/profiles.class.ts
+++ b/services/profiles/profiles.class.ts
@@ -1,9 +1,20 @@
-import { PollSchema } from '../../models/polls/poll.schema';
-import PollModel from '../../models/polls/poll.model';
+import { Application } from '@feathersjs/express';
+import { Poll } from 'which-types';
+
export default class Profiles {
- async get(id: string): Promise<PollSchema[]> {
- return PollModel.find({ authorId: id }).lean();
+ app!: Application;
+
+ async get(id: string): Promise<Poll[]> {
+ return this.app.service('polls').find({
+ query: {
+ authorId: id
+ }
+ });
+ }
+
+ setup (app: Application) {
+ this.app = app;
}
}