76ce18cfd8
- core modules contains core services - shared module contains "dumb" components (directives, models) - used by nearly all modules - site, it's children and projector are now feature modules - full lazy loading with independent routing - routing for children (extremely helpful for plugins (later))
68 lines
1.8 KiB
TypeScript
68 lines
1.8 KiB
TypeScript
import { BaseModel } from '../base.model';
|
|
|
|
/**
|
|
* Representation of a user in contrast to the operator.
|
|
* @ignore
|
|
*/
|
|
export class User extends BaseModel {
|
|
protected _collectionString: string;
|
|
id: number;
|
|
username: string;
|
|
title: string;
|
|
first_name: string;
|
|
last_name: string;
|
|
structure_level: string;
|
|
number: string;
|
|
about_me: string;
|
|
groups_id: number[];
|
|
is_present: boolean;
|
|
is_committee: boolean;
|
|
email: string;
|
|
last_email_send?: string;
|
|
comment: string;
|
|
is_active: boolean;
|
|
default_password: string;
|
|
|
|
constructor(
|
|
id?: number,
|
|
username?: string,
|
|
title?: string,
|
|
first_name?: string,
|
|
last_name?: string,
|
|
structure_level?: string,
|
|
number?: string,
|
|
about_me?: string,
|
|
groups_id?: number[],
|
|
is_present?: boolean,
|
|
is_committee?: boolean,
|
|
email?: string,
|
|
last_email_send?: string,
|
|
comment?: string,
|
|
is_active?: boolean,
|
|
default_password?: string
|
|
) {
|
|
super();
|
|
this._collectionString = 'users/user';
|
|
this.id = id;
|
|
this.username = username;
|
|
this.title = title;
|
|
this.first_name = first_name;
|
|
this.last_name = last_name;
|
|
this.structure_level = structure_level;
|
|
this.number = number;
|
|
this.about_me = about_me;
|
|
this.groups_id = groups_id;
|
|
this.is_present = is_present;
|
|
this.is_committee = is_committee;
|
|
this.email = email;
|
|
this.last_email_send = last_email_send;
|
|
this.comment = comment;
|
|
this.is_active = is_active;
|
|
this.default_password = default_password;
|
|
}
|
|
|
|
getGroups(): BaseModel | BaseModel[] {
|
|
return this.DS.get('users/group', ...this.groups_id);
|
|
}
|
|
}
|