Skip to content

Commit b13b2f8

Browse files
committed
Consider BOFs to be proposed groups in the proxy when comparing with status_id
- Legacy-Id: 4037
1 parent f1c9c7a commit b13b2f8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/group/proxy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def start_date(self):
133133
#status = models.ForeignKey(WGStatus)
134134
@property
135135
def status_id(self):
136-
return { "active": 1, "dormant": 2, "conclude": 3, "proposed": 4, "bof": 1 }[self.state_id]
136+
return { "active": 1, "dormant": 2, "conclude": 3, "proposed": 4, "bof": 4, }[self.state_id]
137137
#area_director = models.ForeignKey(AreaDirector, null=True)
138138
#meeting_scheduled = models.CharField(blank=True, max_length=3)
139139
@property

0 commit comments

Comments
 (0)