From 414d80c22accbe9950de64d93d09210b2ef62d32 Mon Sep 17 00:00:00 2001 From: Marc Aymerich Date: Fri, 27 May 2016 10:20:32 +0000 Subject: [PATCH] Added SaaS readme file --- orchestra/contrib/saas/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orchestra/contrib/saas/README.md b/orchestra/contrib/saas/README.md index d5bc0d79..a8da29ea 100644 --- a/orchestra/contrib/saas/README.md +++ b/orchestra/contrib/saas/README.md @@ -23,7 +23,7 @@ class DrupalService(SoftwareService): Additional attributes can be used to further customize the service class to your needs. ### Custom forms -If a service needs to keep track of additional information (other than a user/site name, is_active, custom_url, or database) an extra form and serializer should be provided. For example, WordPress requires to provide an *email address* for account creation, and the assigned *blog ID* is required for effectively identify the account for being able to perform update and delete operations. In this case we provide two forms: +If a service needs to keep track of additional information (other than a user/site name, is_active, custom_url, or database) an extra form and serializer should be provided. For example, WordPress requires to provide an *email address* for account creation, and the assigned *blog ID* is required for effectively identify the account for update and delete operations. In this case we provide two forms: ```python class WordPressForm(SaaSBaseForm):