-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #93 from PasinduPrabhashitha/feat/orderapproved
feat ✨ : update seed users service and nuget feed accesss token
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,7 +63,7 @@ public async Task<IdentityResult> AddUserToSellerRole(string userId) | |
public async Task<IdentityResult> SeedRolesAndUsers() | ||
{ | ||
await AddRequiredRoles(); | ||
UserRegisterDto defaultUser = new UserRegisterDto { Email = "[email protected]", Password = "Ss$iNhCb3FWwB8Dz%zwTg!PS" }; | ||
UserRegisterDto defaultUser = new UserRegisterDto { UserName="FlorageAdmin", Email = "[email protected]", Password = "Ss$iNhCb3FWwB8Dz%zwTg!PS", PhoneNumber="772345677" }; | ||
|
||
IdentityResult identityResult = await _authService.RegisterAsync(defaultUser); | ||
|
||
|