mirror of
https://github.com/netbirdio/dashboard.git
synced 2026-01-26 01:21:04 +00:00
17 lines
431 B
TypeScript
17 lines
431 B
TypeScript
export interface Account {
|
|
id: string;
|
|
settings: {
|
|
extra: {
|
|
peer_approval_enabled: boolean;
|
|
};
|
|
peer_login_expiration_enabled: boolean;
|
|
peer_login_expiration: number;
|
|
groups_propagation_enabled: boolean;
|
|
jwt_groups_enabled: boolean;
|
|
jwt_groups_claim_name: string;
|
|
jwt_allow_groups: string[];
|
|
regular_users_view_blocked: boolean;
|
|
routing_peer_dns_resolution_enabled: boolean;
|
|
};
|
|
}
|