mirror of
https://github.com/goauthentik/authentik.git
synced 2026-06-17 19:09:11 +03:00
57d2135c8a
* init user Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix and update groups Signed-off-by: Jens Langhammer <jens@goauthentik.io> * split api Signed-off-by: Jens Langhammer <jens@goauthentik.io> * include user and group in ldap conn Signed-off-by: Jens Langhammer <jens@goauthentik.io> * unrelated cleanup Signed-off-by: Jens Langhammer <jens@goauthentik.io> * add ldap users/groups page Signed-off-by: Jens Langhammer <jens@goauthentik.io> * ui cleanup Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fixup Signed-off-by: Jens Langhammer <jens@goauthentik.io> * update error message Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix import Signed-off-by: Jens Langhammer <jens@goauthentik.io> * add forms for user/group connections Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix py sync Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fixup web Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix connection not always saved Signed-off-by: Jens Langhammer <jens@goauthentik.io> * more tests Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix help text Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io>
137 lines
3.6 KiB
TypeScript
Generated
137 lines
3.6 KiB
TypeScript
Generated
/* tslint:disable */
|
|
/* eslint-disable */
|
|
/**
|
|
* authentik
|
|
* Making authentication simple.
|
|
*
|
|
* The version of the OpenAPI document: 2026.5.0-rc1
|
|
* Contact: hello@goauthentik.io
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
import type { PartialGroup } from "./PartialGroup";
|
|
import { PartialGroupFromJSON } from "./PartialGroup";
|
|
import type { Source } from "./Source";
|
|
import { SourceFromJSON } from "./Source";
|
|
|
|
/**
|
|
* Group Source Connection
|
|
* @export
|
|
* @interface GroupLDAPSourceConnection
|
|
*/
|
|
export interface GroupLDAPSourceConnection {
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof GroupLDAPSourceConnection
|
|
*/
|
|
readonly pk: number;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof GroupLDAPSourceConnection
|
|
*/
|
|
group: string;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof GroupLDAPSourceConnection
|
|
*/
|
|
source: string;
|
|
/**
|
|
*
|
|
* @type {Source}
|
|
* @memberof GroupLDAPSourceConnection
|
|
*/
|
|
readonly sourceObj: Source;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof GroupLDAPSourceConnection
|
|
*/
|
|
identifier: string;
|
|
/**
|
|
*
|
|
* @type {Date}
|
|
* @memberof GroupLDAPSourceConnection
|
|
*/
|
|
readonly created: Date;
|
|
/**
|
|
*
|
|
* @type {Date}
|
|
* @memberof GroupLDAPSourceConnection
|
|
*/
|
|
readonly lastUpdated: Date;
|
|
/**
|
|
*
|
|
* @type {PartialGroup}
|
|
* @memberof GroupLDAPSourceConnection
|
|
*/
|
|
readonly groupObj: PartialGroup;
|
|
}
|
|
|
|
/**
|
|
* Check if a given object implements the GroupLDAPSourceConnection interface.
|
|
*/
|
|
export function instanceOfGroupLDAPSourceConnection(
|
|
value: object,
|
|
): value is GroupLDAPSourceConnection {
|
|
if (!("pk" in value) || value["pk"] === undefined) return false;
|
|
if (!("group" in value) || value["group"] === undefined) return false;
|
|
if (!("source" in value) || value["source"] === undefined) return false;
|
|
if (!("sourceObj" in value) || value["sourceObj"] === undefined) return false;
|
|
if (!("identifier" in value) || value["identifier"] === undefined) return false;
|
|
if (!("created" in value) || value["created"] === undefined) return false;
|
|
if (!("lastUpdated" in value) || value["lastUpdated"] === undefined) return false;
|
|
if (!("groupObj" in value) || value["groupObj"] === undefined) return false;
|
|
return true;
|
|
}
|
|
|
|
export function GroupLDAPSourceConnectionFromJSON(json: any): GroupLDAPSourceConnection {
|
|
return GroupLDAPSourceConnectionFromJSONTyped(json, false);
|
|
}
|
|
|
|
export function GroupLDAPSourceConnectionFromJSONTyped(
|
|
json: any,
|
|
ignoreDiscriminator: boolean,
|
|
): GroupLDAPSourceConnection {
|
|
if (json == null) {
|
|
return json;
|
|
}
|
|
return {
|
|
pk: json["pk"],
|
|
group: json["group"],
|
|
source: json["source"],
|
|
sourceObj: SourceFromJSON(json["source_obj"]),
|
|
identifier: json["identifier"],
|
|
created: new Date(json["created"]),
|
|
lastUpdated: new Date(json["last_updated"]),
|
|
groupObj: PartialGroupFromJSON(json["group_obj"]),
|
|
};
|
|
}
|
|
|
|
export function GroupLDAPSourceConnectionToJSON(json: any): GroupLDAPSourceConnection {
|
|
return GroupLDAPSourceConnectionToJSONTyped(json, false);
|
|
}
|
|
|
|
export function GroupLDAPSourceConnectionToJSONTyped(
|
|
value?: Omit<
|
|
GroupLDAPSourceConnection,
|
|
"pk" | "source_obj" | "created" | "last_updated" | "group_obj"
|
|
> | null,
|
|
ignoreDiscriminator: boolean = false,
|
|
): any {
|
|
if (value == null) {
|
|
return value;
|
|
}
|
|
|
|
return {
|
|
group: value["group"],
|
|
source: value["source"],
|
|
identifier: value["identifier"],
|
|
};
|
|
}
|