fix: Remove unused Meeting.session_constraintnames (#5263)

Fixes #3389
This commit is contained in:
Lars Eggert 2023-03-08 20:54:16 +02:00 committed by GitHub
parent 8cdeddb2f7
commit 19a7fecf46
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -298,26 +298,6 @@ class Meeting(models.Model):
self._proceedings_format_version = version # save this for later
return self._proceedings_format_version
@property
def session_constraintnames(self):
"""Gets a list of the constraint names that should be used for this meeting
Anticipated that this will soon become a many-to-many relationship with ConstraintName
(see issue #2770). Making this a @property allows use of the .all(), .filter(), etc,
so that other code should not need changes when this is replaced.
"""
try:
mtg_num = int(self.number)
except ValueError:
mtg_num = None # should not come up, but this method should not fail
if mtg_num is None or mtg_num >= 106:
# These meetings used the old 'conflic?' constraint types labeled as though
# they were the new types.
slugs = ('chair_conflict', 'tech_overlap', 'key_participant')
else:
slugs = ('conflict', 'conflic2', 'conflic3')
return ConstraintName.objects.filter(slug__in=slugs)
def base_url(self):
return "/meeting/%s" % (self.number, )