-
Notifications
You must be signed in to change notification settings - Fork 2
auth.UserService
auth.UserService
- createFromExternalUserData
- getOneByExternalId
- getOneById
- getOneByUsernameAndPassword
- updateFromExternalUserData
• new UserService(): UserService
• Private
users: ApplicationUser
[]
packages/auth/examples/services/user.service.ts:10
▸ createFromExternalUserData(userData
): UserID
Name | Type |
---|---|
userData |
AuthProviderUserContract |
UserID
UserServiceContract.createFromExternalUserData
packages/auth/examples/services/user.service.ts:44
▸ getOneByExternalId(id
): null
| ApplicationUser
Name | Type |
---|---|
id |
string |
null
| ApplicationUser
UserServiceContract.getOneByExternalId
packages/auth/examples/services/user.service.ts:31
▸ getOneById(id
): null
| ApplicationUser
Name | Type |
---|---|
id |
string |
null
| ApplicationUser
UserServiceContract.getOneById
packages/auth/examples/services/user.service.ts:27
▸ getOneByUsernameAndPassword(username
, password
): null
| ApplicationUser
Name | Type |
---|---|
username |
string |
password |
string |
null
| ApplicationUser
UserServiceContract.getOneByUsernameAndPassword
packages/auth/examples/services/user.service.ts:35
▸ updateFromExternalUserData(userData
): UserID
Name | Type |
---|---|
userData |
AuthProviderUserContract |
UserID