mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
b4acb157f8
* Adds authentication mechanism to admin panel Adds field to the "Security settings" admin display, showing the currently configured authentication mechanism. * Adds 14px margin to admin panel names
27 lines
520 B
TypeScript
27 lines
520 B
TypeScript
import { SandboxInfo } from 'app/common/SandboxInfo';
|
|
|
|
export type BootProbeIds =
|
|
'boot-page' |
|
|
'health-check' |
|
|
'reachable' |
|
|
'host-header' |
|
|
'sandboxing' |
|
|
'system-user' |
|
|
'authentication'
|
|
;
|
|
|
|
export interface BootProbeResult {
|
|
verdict?: string;
|
|
success?: boolean;
|
|
done?: boolean;
|
|
severity?: 'fault' | 'warning' | 'hmm';
|
|
details?: Record<string, any>;
|
|
}
|
|
|
|
export interface BootProbeInfo {
|
|
id: BootProbeIds;
|
|
name: string;
|
|
}
|
|
|
|
export type SandboxingBootProbeDetails = SandboxInfo;
|