Create RSOC group too, no information about it in the database but we
need it for RSOC chair role - Legacy-Id: 3325
This commit is contained in:
parent
132b4cb85b
commit
4182f7f16a
|
@ -74,6 +74,13 @@ secretariat_group.state = state_names["active"]
|
|||
secretariat_group.type = type_names["ietf"]
|
||||
secretariat_group.save()
|
||||
|
||||
# create RSOC for use with roles
|
||||
rsoc_group, _ = Group.objects.get_or_create(acronym="rsoc")
|
||||
rsoc_group.name = "RFC Series Oversight Committee"
|
||||
rsoc_group.state = state_names["active"]
|
||||
rsoc_group.type = type_names["ietf"]
|
||||
rsoc_group.save()
|
||||
|
||||
system = Person.objects.get(name="(System)")
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue