mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.5 KiB
44 lines
1.5 KiB
# Generated by Django 3.2.16 on 2022-12-27 02:41
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
def migrate_remove_redundant_permission(apps, *args):
|
|
model = apps.get_model('rbac', 'ContentType')
|
|
model.objects.filter(app_label='applications').delete()
|
|
model.objects.filter(app_label='ops', model__in=[
|
|
'task', 'commandexecution'
|
|
]).delete()
|
|
|
|
model.objects.filter(app_label='xpack', model__in=[
|
|
'applicationchangeauthplan', 'applicationchangeauthplanexecution',
|
|
'applicationchangeauthplantask', 'changeauthplan', 'changeauthplanexecution',
|
|
'changeauthplantask', 'gatherusertask', 'gatherusertaskexecution'
|
|
]).delete()
|
|
|
|
model.objects.filter(app_label='assets', model__in=[
|
|
'authbook', 'historicalauthbook', 'test_gateway',
|
|
'accountbackupplan', 'accountbackupplanexecution',
|
|
'gathereduser', 'systemuser'
|
|
]).delete()
|
|
|
|
model.objects.filter(app_label='perms', model__in=[
|
|
'applicationpermission', 'permedapplication', 'commandfilterrule', 'historicalauthbook'
|
|
]).delete()
|
|
|
|
perm_model = apps.get_model('auth', 'Permission')
|
|
perm_model.objects.filter(codename__in=[
|
|
'view_permusergroupasset', 'view_permuserasset', 'push_assetsystemuser',
|
|
'add_assettonode', 'move_assettonode', 'remove_assetfromnode',
|
|
]).delete()
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('rbac', '0010_auto_20221220_1956'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RunPython(migrate_remove_redundant_permission)
|
|
]
|