Browse Source

cleanup

develop
Rob Colbert 3 months ago
parent
commit
8c5821b088
  1. 14
      src/app/services/user.ts

14
src/app/services/user.ts

@ -48,13 +48,6 @@ export interface UserPasswordChangeParams {
} }
export class UserService extends DtpService { export class UserService extends DtpService {
static get name() {
return "UserService";
}
static get slug() {
return "user";
}
USER_SELECT: string = USER_SELECT: string =
"_id created email displayName bio image flags permissions"; "_id created email displayName bio image flags permissions";
SESSION_SELECT: string = SESSION_SELECT: string =
@ -64,6 +57,13 @@ export class UserService extends DtpService {
populateUser: Array<mongoose.PopulateOptions> = []; populateUser: Array<mongoose.PopulateOptions> = [];
static get name() {
return "UserService";
}
static get slug() {
return "user";
}
constructor(platform: DtpPlatform) { constructor(platform: DtpPlatform) {
super(platform, UserService); super(platform, UserService);
} }

Loading…
Cancel
Save