vanilla 16.0

This commit is contained in:
Ernad Husremovic 2025-10-16 16:41:06 +02:00
parent 8c653da57a
commit f0ee375081
156 changed files with 10614 additions and 55980 deletions

View file

@ -61,38 +61,17 @@ pip install odoo-bringout-oca-ocb-mail
## Dependencies
This addon depends on:
- base
- base_setup
- bus
- web_tour
## Manifest Information
- **Name**: Discuss
- **Version**: 1.10
- **Category**: Productivity/Discuss
- **License**: LGPL-3
- **Installable**: True
## Source
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `mail`.
- Repository: https://github.com/OCA/OCB
- Branch: 16.0
- Path: addons/mail
## License
This package maintains the original LGPL-3 license from the upstream Odoo project.
## Documentation
- Overview: doc/OVERVIEW.md
- Architecture: doc/ARCHITECTURE.md
- Models: doc/MODELS.md
- Controllers: doc/CONTROLLERS.md
- Wizards: doc/WIZARDS.md
- Install: doc/INSTALL.md
- Usage: doc/USAGE.md
- Configuration: doc/CONFIGURATION.md
- Dependencies: doc/DEPENDENCIES.md
- Troubleshooting: doc/TROUBLESHOOTING.md
- FAQ: doc/FAQ.md
This package preserves the original LGPL-3 license.

File diff suppressed because it is too large Load diff

View file

@ -79,7 +79,6 @@ class Channel(models.Model):
invitation_url = fields.Char('Invitation URL', compute='_compute_invitation_url')
_sql_constraints = [
('channel_type_not_null', 'CHECK(channel_type IS NOT NULL)', 'The channel type cannot be empty'),
('uuid_unique', 'UNIQUE(uuid)', 'The channel UUID must be unique'),
('group_public_id_check',
"CHECK (channel_type = 'channel' OR group_public_id IS NULL)",

View file

@ -1,12 +1,18 @@
[project]
name = "odoo-bringout-oca-ocb-mail"
version = "16.0.0"
description = "Discuss - Chat, mail gateway and private channels"
description = "Discuss -
Chat, mail gateway and private channels
"
authors = [
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
]
dependencies = [
"odoo-bringout-oca-ocb-base>=16.0.0",\n "odoo-bringout-oca-ocb-base_setup>=16.0.0",\n "odoo-bringout-oca-ocb-bus>=16.0.0",\n "odoo-bringout-oca-ocb-web_tour>=16.0.0",\n "requests>=2.25.1"
"odoo-bringout-oca-ocb-base>=16.0.0",
"odoo-bringout-oca-ocb-base_setup>=16.0.0",
"odoo-bringout-oca-ocb-bus>=16.0.0",
"odoo-bringout-oca-ocb-web_tour>=16.0.0",
"requests>=2.25.1"
]
readme = "README.md"
requires-python = ">= 3.11"
@ -15,14 +21,14 @@ classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Office/Business",
]
[project.urls]
homepage = "https://github.com/bringout/odoo-bringout-oca-ocb-mail"
repository = "https://github.com/bringout/odoo-bringout-oca-ocb-mail"
homepage = "https://github.com/bringout/0"
repository = "https://github.com/bringout/0"
[build-system]
requires = ["hatchling"]