This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/types/IProvider.ts
viehlieb b719766062
All checks were successful
continuous-integration/drone/push Build is passing
redirect to oidc provider if configured correctly (#2805)
Co-authored-by: konrad <k@knt.li>
Reviewed-on: #2805
Reviewed-by: konrad <k@knt.li>
Co-authored-by: viehlieb <pf@pragma-shift.net>
Co-committed-by: viehlieb <pf@pragma-shift.net>
2023-01-11 21:17:53 +00:00

8 lines
117 B
TypeScript

export interface IProvider {
name: string;
key: string;
authUrl: string;
clientId: string;
logoutUrl: string;
}