Skip to content

Commit

Permalink
Remove is_valid propery from AgreementVersion model
Browse files Browse the repository at this point in the history
This is no longer needed, since we use the AgreementMajorVersion
foreign key to determine validity.
  • Loading branch information
amstilp committed Sep 29, 2023
1 parent 6f630c4 commit 3dd387f
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions primed/cdsa/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,6 @@ def get_absolute_url(self):
def full_version(self):
return "{}.{}".format(str(self.major_version), self.minor_version)

@property
def is_valid(self):
return True


class SignedAgreementStatusMixin:
"""Mixin to define status choices for SignedAgreements."""
Expand Down

0 comments on commit 3dd387f

Please sign in to comment.