6 lines
208 B
Python
6 lines
208 B
Python
# -*- coding: utf-8 -*-
|
|
from django.dispatch import Signal
|
|
|
|
|
|
user_accept_consent = Signal(providing_args=['user', 'client', 'scope'])
|
|
user_decline_consent = Signal(providing_args=['user', 'client', 'scope'])
|