Mercurial > libervia-backend
changeset 1713:0d972af37ff5
plugin misc_account: temporary disabling posts and account deletion
author | souliane <souliane@mailoo.org> |
---|---|
date | Wed, 02 Dec 2015 09:10:58 +0100 |
parents | 96b722a5e263 |
children | 0b4c1f6ada52 |
files | src/plugins/plugin_misc_account.py |
diffstat | 1 files changed, 7 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/plugins/plugin_misc_account.py Wed Dec 02 00:37:28 2015 +0100 +++ b/src/plugins/plugin_misc_account.py Wed Dec 02 09:10:58 2015 +0100 @@ -304,6 +304,8 @@ form_ui.addLabel(D_("New password (again)")) form_ui.addPassword("new_passwd2", value="") + # FIXME: uncomment and fix these features + """ if 'GROUPBLOG' in self.host.plugins: tab_container.addTab("delete_posts", D_("Delete your posts"), container=xml_tools.PairsContainer) form_ui.addLabel(D_("Current profile password")) @@ -318,6 +320,8 @@ form_ui.addPassword("delete_passwd", value="") form_ui.addLabel(D_("Delete your account")) form_ui.addBool("delete_checkbox", "false") + """ + return form_ui.toXml() @defer.inlineCallbacks @@ -341,6 +345,8 @@ return {'xmlui': error_ui.toXml()} # check for account deletion + # FIXME: uncomment and fix these features + """ delete_passwd = data[xml_tools.SAT_FORM_PREFIX + 'delete_passwd'] delete_checkbox = data[xml_tools.SAT_FORM_PREFIX + 'delete_checkbox'] if delete_checkbox == 'true': @@ -363,6 +369,7 @@ if verified: defer.returnValue(self.__deleteBlogPosts(posts, comments, profile)) defer.returnValue(error_ui()) + """ # check for password modification current_passwd = data[xml_tools.SAT_FORM_PREFIX + 'current_passwd']