diff options
author | ilyayudovin <ilyayudovin123@gmail.com> | 2020-06-12 16:14:56 +0300 |
---|---|---|
committer | ilyayudovin <ilyayudovin123@gmail.com> | 2020-06-12 16:14:56 +0300 |
commit | c9fc9c12b452d9aa8630cdfdaf494381a5dfdd8b (patch) | |
tree | 0c5abdfe7a779cfda25fd6aab876dcec0866716e /services/profile | |
parent | 8fc9f8d09d64f3a1e5d0dac238eac6ac9629c45f (diff) | |
download | which-api-c9fc9c12b452d9aa8630cdfdaf494381a5dfdd8b.tar.gz |
feat: add profile.service
Diffstat (limited to 'services/profile')
-rw-r--r-- | services/profile/profile.service.ts | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/services/profile/profile.service.ts b/services/profile/profile.service.ts new file mode 100644 index 0000000..4a12def --- /dev/null +++ b/services/profile/profile.service.ts @@ -0,0 +1,16 @@ +import {User} from '../../models/users/user.schema'; +import {Poll} from "../../models/polls/poll.schema"; +import {Application} from "@feathersjs/express"; + +export class ProfileService { + user: User = Object; + saved_polls: Poll[] = []; + + async find () { + return [this.user, this.saved_polls]; + } +} + +export default (app: Application): void => { + app.use('/profile', new ProfileService()); +};
\ No newline at end of file |