I have a angular 2 application that has a class called User
. This user has a attribute called deleted_at
that is either nul
l or contains a datetime, obviously the user is deleted if the deleted_at
property isn't null
. This is how my user.ts file looks:
User.ts
export class User {
id: number;
email: string;
created_at: string;
first_name: string;
last_name: string;
deleted_at: any;
name() {
if (this.deleted_at === null) {
return this.first_name;
} else {
return 'DELETED';
}
}
}
Now I expected that I could just call name in my template with a simple line:
{{ user.name }}
This however returns nothing, how can you call certain functions in the angular 2 template? Or isn't this allowed?
Edit: to clear stuff up a bit, this is a class User
that I am using in my component user-list.component.ts, multiple users are handled in this component.