diff options
Diffstat (limited to 'services/profile/profile.class.ts')
-rw-r--r-- | services/profile/profile.class.ts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/services/profile/profile.class.ts b/services/profile/profile.class.ts new file mode 100644 index 0000000..d4e7b02 --- /dev/null +++ b/services/profile/profile.class.ts @@ -0,0 +1,9 @@ +import { Poll, PollSchema } from "../../models/polls/poll.schema"; +import PollModel from '../../models/polls/poll.model'; + +export default class Profiles { + async get(id: string, params: any): Promise<PollSchema[]> { + return PollModel.find({ authorId: id }); + } +}; + |