Added SaaS readme file

This commit is contained in:
Marc Aymerich 2016-05-27 10:20:32 +00:00
parent 3a449897f7
commit 414d80c22a
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ class DrupalService(SoftwareService):
Additional attributes can be used to further customize the service class to your needs. Additional attributes can be used to further customize the service class to your needs.
### Custom forms ### 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 ```python
class WordPressForm(SaaSBaseForm): class WordPressForm(SaaSBaseForm):