Skip to content

Commit

Permalink
Add membership_accessibility_website_project_role_members module and …
Browse files Browse the repository at this point in the history
…other project updates

Fixes

Fixes
  • Loading branch information
ByteMeAsap committed Jul 23, 2024
1 parent 2b78583 commit e1607d8
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1 +1 @@

from . import models
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@
"license": "AGPL-3",
"application": False,
"installable": True,
"depends": [
"membership_accessibility",
"website_project_role_members"
],
"auto_install": True,
"depends": ["membership_accessibility", "website_project_role_members"],
"data": ["views/views.xml"],
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

from . import res_users
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from odoo import models


class ResUsers(models.Model):
_inherit = "res.users"

@property
def SELF_READABLE_FIELDS(self):
return super().SELF_READABLE_FIELDS + [
"is_anonymous",
"is_published",
"website_description",
]
1 change: 1 addition & 0 deletions package.txt
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ l10n_nl_hr_recruitment
l10n_nl_rgs_usability
mass_mailing_force_dedicated_server
membership_accessibility
membership_accessibility_website_project_role_members
multi_company_disable
oca/account_asset_management
oca/account_banking_mandate
Expand Down
2 changes: 1 addition & 1 deletion repos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
onestein: git@github.com:onesteinbv/addons-generic.git
merges:
- remote: onestein
ref: 03092d3b9fe52512d9ebafa5f63589d09a12f588
ref: 84d9b37c6ded9a73688765eb02017f402ea1eebf

# oca
./oca:
Expand Down

0 comments on commit e1607d8

Please sign in to comment.