The method CheckIsAuthenticable in the Service layer needs to be removed.
Path of the file to be changed
internal/domain/service/service.go
Code to be Removed
// CheckIsAuthenticable checks if a user is authenticable based on their status
func (s *Service) CheckIsAuthenticable(user *me.User) error {
if user.UserStatus == mo.UserStatusINACTIVE {
return mo.ErrorUserIsInactive
}
return nil
}
The changes will be merged into the enhance/team/66/implement-password-validation branch first. Therefore, set the base branch of the pull request as enhance/team/66/implement-password-validation.
The method
CheckIsAuthenticable
in theService
layer needs to be removed.Path of the file to be changed
internal/domain/service/service.go
Code to be Removed
The changes will be merged into the
enhance/team/66/implement-password-validation
branch first. Therefore, set the base branch of the pull request asenhance/team/66/implement-password-validation
.