mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
Merge pull request #740 from turbo124/develop
Added fields to user transformer
This commit is contained in:
commit
1d52d18f2c
@ -21,7 +21,11 @@ class UserTransformer extends EntityTransformer
|
||||
'registered' => (bool) $user->registered,
|
||||
'confirmed' => (bool) $user->confirmed,
|
||||
'oauth_user_id' => $user->oauth_user_id,
|
||||
'oauth_provider_id' => $user->oauth_provider_id
|
||||
'oauth_provider_id' => $user->oauth_provider_id,
|
||||
'notify_sent' => (bool) $user->notify_sent,
|
||||
'notify_viewed' => (bool) $user->notify_viewed,
|
||||
'notify_paid' => (bool) $user->notify_paid,
|
||||
'notify_approved' => (bool) $user->notify_approved,
|
||||
];
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user