mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-08-02 01:05:25 +02:00
Add:Email inputs for users
This commit is contained in:
parent
565ff36d4e
commit
bfe514b7d4
5 changed files with 24 additions and 7 deletions
|
@ -59,6 +59,7 @@ class User extends Model {
|
|||
id: userExpanded.id,
|
||||
oldUserId: userExpanded.extraData?.oldUserId || null,
|
||||
username: userExpanded.username,
|
||||
email: userExpanded.email || null,
|
||||
pash: userExpanded.pash,
|
||||
type: userExpanded.type,
|
||||
token: userExpanded.token,
|
||||
|
@ -96,6 +97,7 @@ class User extends Model {
|
|||
return {
|
||||
id: oldUser.id,
|
||||
username: oldUser.username,
|
||||
email: oldUser.email || null,
|
||||
pash: oldUser.pash || null,
|
||||
type: oldUser.type || null,
|
||||
token: oldUser.token || null,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue