Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add IsEmailVerified to admin user profile #10

Closed
starkmsu opened this issue Apr 20, 2020 · 0 comments
Closed

Add IsEmailVerified to admin user profile #10

starkmsu opened this issue Apr 20, 2020 · 0 comments
Assignees

Comments

@starkmsu
Copy link
Member

starkmsu commented Apr 20, 2020

  1. Add to AdminProfileEntity
    [Column("email_verified")]
    public bool IsEmailVerified { get; set; }
  2. Add EF migration that adds this property to AdminProfileEntity
  3. Add to Lykke.Service.CustomerProfile.Domain.Models.AdminProfile and to Lykke.Service.CustomerProfile.Client.Models.Responses.AdminProfile
    public bool IsEmailVerified { get; set; }
  4. Subscribe to AdminEmailVeridfied event from MAVN.Service.AdminManagement.Contract (Define AdminEmailVeridfied in Contract project MAVN.Service.AdminManagement#9) in AdminEmailVerifiedSubscriber (similar to https://github.com/OpenMAVN/MAVN.Service.CustomerProfile/blob/master/src/MAVN.Service.CustomerProfile.DomainServices/Subscribers/CodeVerifiedSubscriber.cs).
    Set IsEmailVerified = true in AdminProfileService for admin profile during event processing.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants