mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 09:26:27 +00:00
11028140d9
The Entire LDAP infrastructures now relies on signals rather than direct function calls and is in its own app. This means it can be deactivated, but also that we can easily plug new services in addition to LDAP, such as OAuth. Closes issue #270
27 lines
642 B
Python
27 lines
642 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.29 on 2021-01-10 17:11
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0003_ldapserviceuser_ldapserviceusergroup_ldapuser_ldapusergroup'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.DeleteModel(
|
|
name='LdapServiceUser',
|
|
),
|
|
migrations.DeleteModel(
|
|
name='LdapServiceUserGroup',
|
|
),
|
|
migrations.DeleteModel(
|
|
name='LdapUser',
|
|
),
|
|
migrations.DeleteModel(
|
|
name='LdapUserGroup',
|
|
),
|
|
]
|