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

RDISCROWD-7659 password logic in ProjectCommonForm #973

Merged
merged 2 commits into from
Sep 24, 2024
Merged

Conversation

n00rsy
Copy link

@n00rsy n00rsy commented Sep 24, 2024

Issue number of the reported bug or feature request: RDISCROWD-7659

Refactor #972 after code review.

@coveralls
Copy link

coveralls commented Sep 24, 2024

Pull Request Test Coverage Report for Build 11018626401

Details

  • 5 of 6 (83.33%) changed or added relevant lines in 1 file are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage increased (+0.005%) to 94.01%

Changes Missing Coverage Covered Lines Changed/Added Lines %
pybossa/forms/forms.py 5 6 83.33%
Totals Coverage Status
Change from base Build 11016071335: 0.005%
Covered Lines: 17327
Relevant Lines: 18431

💛 - Coveralls

class ProjectForm(ProjectCommonForm):

def __init__(self, *args, **kwargs):
super(ProjectForm, self).__init__(*args, **kwargs)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we want to keep def __init__ on line 107-108 and 112-113?

The original PR included __init__ and super(ProjectForm...), but here it is being removed. It may need to be added back here so that the original is intact.

The only difference was adding self.password.validators with CheckPasswordStrength which can reside in ProjectCommonForm.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. Constructor on lines 107-108:
    We removed the constructor in lines 107-108 and declared a new one starting on line 87 for ProjectCommonForm.

  2. Constructor on lines 112-113
    Removing the __init__ function from ProjectForm will make it default to it's parent class's constructor, ProjectCommonForm - exactly what we want.

See https://stackoverflow.com/questions/39488875/parent-constructor-called-by-default

@n00rsy n00rsy merged commit 08408e4 into main Sep 24, 2024
6 checks passed
@dchhabda dchhabda deleted the RDISCROWD-7659-2 branch October 8, 2024 13:47
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

Successfully merging this pull request may close these issues.

3 participants