first commit
This commit is contained in:
2
core/apps/accounts/validators/__init__.py
Normal file
2
core/apps/accounts/validators/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
||||
from .likes import * # noqa
|
||||
from .participant import * # noqa
|
||||
8
core/apps/accounts/validators/likes.py
Normal file
8
core/apps/accounts/validators/likes.py
Normal file
@@ -0,0 +1,8 @@
|
||||
# from django.core.exceptions import ValidationError
|
||||
|
||||
|
||||
class LikesValidator:
|
||||
def __init__(self): ...
|
||||
|
||||
def __call__(self):
|
||||
return True
|
||||
8
core/apps/accounts/validators/participant.py
Normal file
8
core/apps/accounts/validators/participant.py
Normal file
@@ -0,0 +1,8 @@
|
||||
# from django.core.exceptions import ValidationError
|
||||
|
||||
|
||||
class ParticipantValidator:
|
||||
def __init__(self): ...
|
||||
|
||||
def __call__(self):
|
||||
return True
|
||||
Reference in New Issue
Block a user