mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
427 B
20 lines
427 B
# -*- coding: utf-8 -*-
|
|
#
|
|
|
|
from django.conf import settings
|
|
from .models import Client
|
|
|
|
__all__ = ['new_client']
|
|
|
|
|
|
def new_client():
|
|
"""
|
|
:return: authentication.models.Client
|
|
"""
|
|
return Client(
|
|
server_url=settings.AUTH_OPENID_SERVER_URL,
|
|
realm_name=settings.AUTH_OPENID_REALM_NAME,
|
|
client_id=settings.AUTH_OPENID_CLIENT_ID,
|
|
client_secret=settings.AUTH_OPENID_CLIENT_SECRET
|
|
)
|