Skip to content

Commit 12eaebb

Browse files
committed
Only claim a document is on the agenda if it is on the schedule for a
current or future telechat - Legacy-Id: 3909
1 parent 36b8310 commit 12eaebb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/doc/proxy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ def status_date(self):
336336
@property
337337
def agenda(self):
338338
e = self.latest_event(TelechatDocEvent, type="scheduled_for_telechat")
339-
return bool(e and e.telechat_date)
339+
return bool(e and e.telechat_date and e.telechat_date >= datetime.date.today())
340340

341341
#cur_state = models.ForeignKey(IDState, db_column='cur_state', related_name='docs')
342342
@property

0 commit comments

Comments
 (0)