#446 remove crown

This commit is contained in:
Kenneth Kehl
2023-04-13 07:13:04 -07:00
parent 6587ed5223
commit 65ea248429
23 changed files with 47 additions and 276 deletions

View File

@@ -37,12 +37,11 @@ class OrganisationsClient(NotifyAdminAPIClient):
raise error
@cache.delete('organisations')
def create_organisation(self, name, crown, organisation_type, agreement_signed):
def create_organisation(self, name, organisation_type, agreement_signed):
return self.post(
url="/organisations",
data={
"name": name,
"crown": crown,
"organisation_type": organisation_type,
"agreement_signed": agreement_signed,
}