Ensure creator related blobs are stored in the creator container

This commit is contained in:
2024-09-04 22:08:02 -04:00
parent 1fc6ddaf8d
commit 6dc83ff9bd
7 changed files with 7 additions and 10 deletions

View File

@@ -31,7 +31,6 @@ public class ChangeAddressHandler(
}
user.Address = request.Address;
// TODO: check to see if identity resets the email-validated flag - @jonathan
var result = await userManager.UpdateAsync(user);

View File

@@ -31,8 +31,8 @@ public class ChangeEmailHandler(
}
user.Email = request.Email;
// TODO: check to see if identity resets the email-validated flag - @jonathan
// TODO: check to see if identity resets the `email confirmed` flag - @jonathan
var result = await userManager.UpdateAsync(user);
if (result.Succeeded)

View File

@@ -31,7 +31,7 @@ public class ChangePhoneHandler(
}
user.PhoneNumber = request.PhoneNumber;
// TODO: check to see if identity resets the email-validated flag - @jonathan
// TODO: check to see if identity resets the `phone confirmed` flag - @jonathan
var result = await userManager.UpdateAsync(user);