Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[16.0][MIG] fetchmail_thread_default #1329

Merged
merged 23 commits into from
Mar 19, 2024
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
df461d7
[ADD][fetchmail_thread_default] Default thread for incoming mails
yajo Mar 23, 2017
96ed453
OCA Transbot updated translations from Transifex
oca-transbot Jun 10, 2017
6f527dd
[9.0][FIX] fetchmail_thread_default: check model in env for update mo…
sergio-teruel Jul 19, 2017
df3f686
[UPD] Update fetchmail_thread_default.pot
oca-travis Jun 24, 2018
59e2b66
[MIG] fetch_thread_default: Migration to 11.0
chienandalu Dec 3, 2018
e2ad842
[UPD] README.rst
OCA-git-bot Dec 4, 2018
502ec0b
[UPD] Update fetchmail_thread_default.pot
oca-travis Dec 4, 2018
6097b11
[UPD] README.rst
OCA-git-bot Jul 29, 2019
f3e3ac7
[MIG] fetchmail_thread_default: Migration to 12.0
Rad0van Jun 18, 2020
72f4d20
[IMP] fetchmail_thread_default: black, isort, prettier
Rad0van Jul 23, 2020
b8e1d08
[MIG] fetchmail_thread_default: Migration to 13.0
Rad0van Jul 23, 2020
16a3377
[UPD] Update fetchmail_thread_default.pot
oca-travis Jul 27, 2020
5b5d03a
Update translation files
oca-transbot Jul 29, 2020
60de032
[IMP] pre-commit run -a
Jan 26, 2021
4dbb626
[IMP] Apply pre-commit changes: Resolve conflicts
Tardo Jan 26, 2021
e3bb886
[MIG] [14.0] fetchmail_thread_default
gfcapalbo Jun 16, 2023
f461ca2
[13.0] Fixed context field get
Ismaw34 Jan 15, 2021
f425338
[UPD] Update fetchmail_thread_default.pot
Feb 12, 2024
93136a5
[BOT] post-merge updates
OCA-git-bot Feb 12, 2024
7377b6a
Update translation files
weblate Feb 12, 2024
e2bfa98
Translated using Weblate (Italian)
mymage Feb 26, 2024
c640ee6
[IMP] fetchmail_thread_default: pre-commit stuff
ntsirintanis Mar 8, 2024
ea37a5e
[MIG] fetchmail_thread_default: Migration to 16.0
ntsirintanis Mar 8, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[9.0][FIX] fetchmail_thread_default: check model in env for update mo…
…dule
sergio-teruel authored and ntsirintanis committed Mar 19, 2024
commit 6f527dd448fb942fdd112fbf2e4640c761eed6a5
2 changes: 1 addition & 1 deletion fetchmail_thread_default/models/fetchmail_server.py
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ def _get_thread_models(self):
]).mapped("model_id")
# Exclude AbstractModel
return [(m.model, m.name) for m in models
if getattr(self.env[m.model], "_auto")]
if m.model in self.env and getattr(self.env[m.model], "_auto")]

# TODO New api on v10+
# pylint: disable=old-api7-method-defined