mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-08-12 17:27:39 +02:00
Corrected OAUTH Settings initialisation
This commit is contained in:
@ -254,9 +254,11 @@ HELPDESK_ALWAYS_SAVE_INCOMING_EMAIL_MESSAGE = getattr(
|
|||||||
# email OAUTH #
|
# email OAUTH #
|
||||||
#######################
|
#######################
|
||||||
|
|
||||||
HELPDESK_OAUTH = {
|
HELPDESK_OAUTH = getattr(
|
||||||
"token_url": "",
|
settings, 'HELPDESK_OAUTH', {
|
||||||
"client_id": "",
|
"token_url": "",
|
||||||
"secret": "",
|
"client_id": "",
|
||||||
"scope": [""]
|
"secret": "",
|
||||||
}
|
"scope": [""]
|
||||||
|
}
|
||||||
|
)
|
||||||
|
Reference in New Issue
Block a user