mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-10-31 23:22:49 +00:00
c4a104b3b6
Just ran black on the whoe repository. Fix #210.
34 lines
1,008 B
Python
34 lines
1,008 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.7 on 2018-04-15 23:07
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
def rename_permission_soa_to_srv(apps, schema_editor):
|
|
Permission = apps.get_model("auth", "Permission")
|
|
# The Permission called 'view_soa' but in the Srv object
|
|
try:
|
|
to_rename = Permission.objects.get(
|
|
codename="view_soa", content_type__model="srv"
|
|
)
|
|
except Permission.DoesNotExist:
|
|
# The permission is missing so no problem
|
|
pass
|
|
else:
|
|
to_rename.name = "Peut voir un object srv"
|
|
to_rename.codename = "view_srv"
|
|
to_rename.save()
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("machines", "0078_auto_20180415_1252")]
|
|
|
|
operations = [
|
|
migrations.RunPython(rename_permission_soa_to_srv),
|
|
migrations.AlterModelOptions(
|
|
name="srv",
|
|
options={"permissions": (("view_srv", "Peut voir un objet srv"),)},
|
|
),
|
|
]
|