Added profile ProfileColors and Profile images
This commit is contained in:
@@ -9,10 +9,10 @@ public interface IIdentityService
|
||||
Task<Result<string>> CreateUserAsync(Userinfo userInfo);
|
||||
Task<Result<string>> CreateUserAsync(string email, string userName, string firstName, string lastName, string password);
|
||||
Task<UserModel?> GetCurrentUserAsync();
|
||||
Task<Result<string>> UpdateCurrentUserAsync(string id, string firstName, string lastName, string occupation,
|
||||
string phoneNumber, string birthDate, string country, string city, string address, string about,
|
||||
string description,
|
||||
SocialNetworksModel socialNetworks);
|
||||
Task<Result> UpdateCurrentUserBannerPictureUrlAsync(string url);
|
||||
Task<Result> UpdateCurrentUserProfilePictureUrlAsync(string url);
|
||||
Task<Result> UpdateCurrentUserWebsiteIconUrlAsync(string url);
|
||||
Task<Result<string>> UpdateCurrentUserAsync(UserModel userModel);
|
||||
Task<IList<string>> GetCurrentUserRolesAsync();
|
||||
Task<UserModel?> FindUserByIdAsync(string id);
|
||||
Task<UserModel?> FindUserByEmailAsync(string email);
|
||||
|
||||
Reference in New Issue
Block a user