v0.7.10.2 - Hotfix 2 (#2382)

This commit is contained in:
Joe Milazzo 2023-10-30 17:10:08 -05:00 committed by GitHub
parent cf1dc7d42c
commit b6d4938e22
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 17 additions and 12 deletions

View file

@ -27,6 +27,7 @@ public interface IAccountService
Task<bool> HasChangeRestrictionRole(AppUser? user);
Task<bool> CheckIfAccessible(HttpRequest request);
Task<string> GenerateEmailLink(HttpRequest request, string token, string routePart, string email, bool withHost = true);
}
public class AccountService : IAccountService