django-users-iag-usp 0.1.1__py3-none-any.whl → 0.1.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: django-users-iag-usp
3
- Version: 0.1.1
3
+ Version: 0.1.3
4
4
  Summary: Add your description here
5
5
  Author-email: Marcelo Schneider <schenider.fei@gmail.com>
6
6
  License: MIT
@@ -10,4 +10,4 @@ Classifier: Framework :: Django :: 4.2
10
10
  Classifier: Framework :: Django :: 5.0
11
11
  Classifier: Programming Language :: Python :: 3
12
12
  Requires-Python: >=3.13
13
- Requires-Dist: django>=6.0.1
13
+ Requires-Dist: django>=5.2.10
@@ -0,0 +1,3 @@
1
+ django_users_iag_usp-0.1.3.dist-info/METADATA,sha256=Ro6O5mlda3dZIKNKf-iclIfjnOplexOcYFRV9i0ut2k,411
2
+ django_users_iag_usp-0.1.3.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
3
+ django_users_iag_usp-0.1.3.dist-info/RECORD,,
@@ -1,7 +0,0 @@
1
- ldap/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- ldap/admin.py,sha256=suMo4x8I3JBxAFBVIdE-5qnqZ6JAZV0FESABHOSc-vg,63
3
- ldap/apps.py,sha256=9IJdYnroLbUjcvJMRM_mWjbv-AeO30zpKpInS3oShE8,188
4
- ldap/models.py,sha256=xZ4Hkzya6Mc00InuVUWGLSC0PSqpY8eXRWZ7yqtZ8c8,393
5
- django_users_iag_usp-0.1.1.dist-info/METADATA,sha256=i0NDIxM5MLuzyO8E7-FOMmNB9lhnu7060Zcv2emvWIo,410
6
- django_users_iag_usp-0.1.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
7
- django_users_iag_usp-0.1.1.dist-info/RECORD,,
ldap/__init__.py DELETED
File without changes
ldap/admin.py DELETED
@@ -1,3 +0,0 @@
1
- from django.contrib import admin
2
-
3
- # Register your models here.
ldap/apps.py DELETED
@@ -1,7 +0,0 @@
1
- from django.apps import AppConfig
2
-
3
-
4
- class LdapConfig(AppConfig):
5
- default_auto_field = 'django.db.models.BigAutoField'
6
- name = 'ldap'
7
- verbose_name = 'Gerenciamento de Usuários'
ldap/models.py DELETED
@@ -1,14 +0,0 @@
1
- from django.contrib.auth.models import AbstractUser
2
- from django.db import models
3
-
4
-
5
- class LdapUser(AbstractUser):
6
- groups = models.TextField()
7
- created_at = models.DateField(auto_now_add=True)
8
- updated_at = models.DateField(auto_now=True)
9
-
10
- def get_setor(self):
11
- groups_striped = self.groups.replace(" ", "")
12
- groups = groups_striped.split(",")
13
- return groups
14
-