Skip to content

Commit

Permalink
[ADD] portal_user_account_deactivate
Browse files Browse the repository at this point in the history
  • Loading branch information
AungKoKoLin1997 committed Feb 23, 2024
1 parent 8d742d0 commit 23b4a1b
Show file tree
Hide file tree
Showing 11 changed files with 560 additions and 0 deletions.
63 changes: 63 additions & 0 deletions portal_user_account_deactivate/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
==============================
Portal User Account Deactivate
==============================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:06e5c7f950c32c78c59665f68266c96a3c60c1bbbee9246ef3fa87f2de92fb7c
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Fmi7--custom-lightgray.png?logo=github
:target: https://github.com/qrtl/mi7-custom/tree/15.0/portal_user_account_deactivate
:alt: qrtl/mi7-custom

|badge1| |badge2| |badge3|

This module enables portal users to deactivate their accounts by
themselves.

**Table of contents**

.. contents::
:local:

Usage
=====

1. Go to the portal account at the URL /my.
2. Click 'Edit Security Settings'.
3. Then, press the 'Deactivate Account' button.

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/qrtl/mi7-custom/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/qrtl/mi7-custom/issues/new?body=module:%20portal_user_account_deactivate%0Aversion:%2015.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

Do not contact contributors directly about support or help with technical issues.

Credits
=======

Authors
-------

* Quartile Limited

Maintainers
-----------

This module is part of the `qrtl/mi7-custom <https://github.com/qrtl/mi7-custom/tree/15.0/portal_user_account_deactivate>`_ project on GitHub.

You are welcome to contribute.
1 change: 1 addition & 0 deletions portal_user_account_deactivate/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import controllers
15 changes: 15 additions & 0 deletions portal_user_account_deactivate/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Copyright 2024 Quartile Limited
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "Portal User Account Deactivate",
"category": "Portal",
"version": "15.0.1.0.0",
"author": "Quartile Limited",
"license": "AGPL-3",
"website": "https://www.quartile.co",
"depends": ["portal"],
"data": [
"views/portal_templates.xml",
],
"installable": True,
}
1 change: 1 addition & 0 deletions portal_user_account_deactivate/controllers/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import portal
16 changes: 16 additions & 0 deletions portal_user_account_deactivate/controllers/portal.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Copyright 2024 Quartile Limited
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

from odoo import SUPERUSER_ID
from odoo.http import request, route

from odoo.addons.portal.controllers.portal import CustomerPortal as Portal


class CustomerPortal(Portal):
@route("/my/deactivate", type="http", auth="user", website=True, methods=["POST"])
def deactivate_account(self, **post):
user = request.env.user
if user:
user.with_user(SUPERUSER_ID).write({"active": False})
return request.redirect("/web")
2 changes: 2 additions & 0 deletions portal_user_account_deactivate/readme/DESCRIPTION.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
This module enables portal users to deactivate their accounts by
themselves.
3 changes: 3 additions & 0 deletions portal_user_account_deactivate/readme/USAGE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
1. Go to the portal account at the URL /my.
2. Click 'Edit Security Settings'.
3. Then, press the 'Deactivate Account' button.
Loading

0 comments on commit 23b4a1b

Please sign in to comment.