* core: bump black from 22.12.0 to 23.1.0 Bumps [black](https://github.com/psf/black) from 22.12.0 to 23.1.0. - [Release notes](https://github.com/psf/black/releases) - [Changelog](https://github.com/psf/black/blob/main/CHANGES.md) - [Commits](https://github.com/psf/black/compare/22.12.0...23.1.0) --- updated-dependencies: - dependency-name: black dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * re-format Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Jens Langhammer <jens@goauthentik.io> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jens Langhammer <jens@goauthentik.io>
45 lines
1.6 KiB
Python
45 lines
1.6 KiB
Python
# Generated by Django 3.1.4 on 2021-01-30 18:28
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("authentik_core", "0016_auto_20201202_2234"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="propertymapping",
|
|
name="managed",
|
|
field=models.TextField(
|
|
default=None,
|
|
help_text=(
|
|
"Objects which are managed by authentik. These objects are created and updated"
|
|
" automatically. This is flag only indicates that an object can be overwritten"
|
|
" by migrations. You can still modify the objects via the API, but expect"
|
|
" changes to be overwritten in a later update."
|
|
),
|
|
null=True,
|
|
verbose_name="Managed by authentik",
|
|
unique=True,
|
|
),
|
|
),
|
|
migrations.AddField(
|
|
model_name="token",
|
|
name="managed",
|
|
field=models.TextField(
|
|
default=None,
|
|
help_text=(
|
|
"Objects which are managed by authentik. These objects are created and updated"
|
|
" automatically. This is flag only indicates that an object can be overwritten"
|
|
" by migrations. You can still modify the objects via the API, but expect"
|
|
" changes to be overwritten in a later update."
|
|
),
|
|
null=True,
|
|
verbose_name="Managed by authentik",
|
|
unique=True,
|
|
),
|
|
),
|
|
]
|