Skip to content

Commit

Permalink
fix: allow rswg as a scheduling conflict (#6133)
Browse files Browse the repository at this point in the history
  • Loading branch information
rjsparks authored Aug 12, 2023
1 parent f30d348 commit e1c1daa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ietf/secr/sreq/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
# Helper Functions
# -------------------------------------------------
def allowed_conflicting_groups():
return Group.objects.filter(type__in=['wg', 'ag', 'rg', 'rag', 'program'], state__in=['bof', 'proposed', 'active'])
return Group.objects.filter(type__in=['wg', 'ag', 'rg', 'rag', 'program', 'edwg'], state__in=['bof', 'proposed', 'active'])

def check_conflict(groups, source_group):
'''
Expand Down

0 comments on commit e1c1daa

Please sign in to comment.