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:
Ole Laursen 2011-08-18 17:36:05 +00:00
parent 132b4cb85b
commit 4182f7f16a

View file

@ -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)")