aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/shared/users/user.model.ts
blob: f7859f495929ae257c767c76b6f5b0953580b1ad (plain) (tree)
1
2
3
4
5
6
7
                   
             

                   
                       
                  
 






                          


                                  
                                        
 

                                      
     





                                 
export class User {
  id: number;
  username: string;
  role: string;
  displayNSFW: boolean;
  createdAt: Date;

  constructor(hash: {
    id: number,
    username: string,
    role: string,
    displayNSFW?: boolean,
    createdAt?: Date,
  }) {
    this.id = hash.id;
    this.username = hash.username;
    this.role = hash.role;
    this.displayNSFW = hash.displayNSFW;

    if (hash.createdAt) {
      this.createdAt = hash.createdAt;
    }
  }

  isAdmin() {
    return this.role === 'admin';
  }
}