Make User.to_api include combined name field
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
5420cf58bd
commit
1e80da9b80
@ -111,6 +111,7 @@ class User extends AuthUser {
|
|||||||
uid: this.uid,
|
uid: this.uid,
|
||||||
first_name: this.first_name,
|
first_name: this.first_name,
|
||||||
last_name: this.last_name,
|
last_name: this.last_name,
|
||||||
|
name: `${this.first_name} ${this.last_name}`,
|
||||||
email: this.email,
|
email: this.email,
|
||||||
tagline: this.tagline,
|
tagline: this.tagline,
|
||||||
trap: this.trap,
|
trap: this.trap,
|
||||||
|
Loading…
Reference in New Issue
Block a user