mirror of
https://github.com/WeblateOrg/weblate.git
synced 2026-07-27 22:46:38 +08:00
These were introduced before add-ons existed, but now they overlap with site-wide installed add-ons while not having the same visibility. Fixes #19307
13 lines
312 B
Python
Vendored
13 lines
312 B
Python
Vendored
# Copyright © Michal Čihař <michal@weblate.org>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
"""Add add-on for cleanup settings migration testing."""
|
|
|
|
from weblate.addons.models import Addon
|
|
|
|
Addon.objects.bulk_create(
|
|
[
|
|
Addon(name="weblate.removal.comments", configuration={"age": 3}),
|
|
]
|
|
)
|