add config for signup

bzr revid: al@openerp.com-20120816120013-b3a1sjiqxvvajbs8
This commit is contained in:
Antony Lesuisse 2012-08-16 14:00:13 +02:00
parent f4f7de1369
commit d26ed83997
2 changed files with 23 additions and 3 deletions

View File

@ -32,6 +32,8 @@ class base_config_settings(osv.osv_memory):
help="""The portal will give access to a series of documents for your customers; his quotations, his invoices, his projects, etc."""),
'module_share': fields.boolean('allow documents sharing',
help="""As an example, you will be able to share a project or some tasks to your customers, or quotes/sales to several persons at your customer company, or your agenda availabilities to your contacts."""),
'module_auth_signup': fields.boolean('allow new users to sign up'),
'module_auth_oauth': fields.boolean('external oauth authentfication (google, facebook, ...)'),
}
def open_company(self, cr, uid, ids, context=None):

View File

@ -27,6 +27,16 @@
</div>
</div>
</group>
<group>
<label for="id" string="Email"/>
<div>
<div>
<button type="action"
name="%(base.action_ir_mail_server_list)d"
string="Configure outgoing email servers" class="oe_link"/>
</div>
</div>
</group>
<group>
<label for="id" string="Share Data"/>
<div>
@ -38,10 +48,18 @@
<field name="module_portal" class="oe_inline"/>
<label for="module_portal"/>
</div>
</div>
</group>
<group>
<label for="id" string="Authentification"/>
<div>
<div>
<button type="action"
name="%(base.action_ir_mail_server_list)d"
string="Configure outgoing email servers" class="oe_link"/>
<field name="module_auth_signup" class="oe_inline"/>
<label for="module_auth_signup"/>
</div>
<div>
<field name="module_auth_oauth" class="oe_inline"/>
<label for="module_auth_oauth"/>
</div>
</div>
</group>