remove components related to MOU and agreement (#476)

Co-authored-by: Kenneth Kehl <@kkehl@flexion.us>
This commit is contained in:
Kenneth Kehl
2023-04-28 11:08:12 -07:00
committed by GitHub
parent f5f666884c
commit 54abfb3a4d
27 changed files with 15 additions and 1315 deletions

View File

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