mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-12 00:15:48 +01:00
✨ Add visual hint for defined and undefined credentials
This commit is contained in:
@@ -52,12 +52,14 @@ export type ConfigAppIntegrationType = Omit<AppIntegrationType, 'properties'> &
|
||||
};
|
||||
|
||||
export type AppIntegrationPropertyType = {
|
||||
type: 'private' | 'public';
|
||||
type: AppIntegrationPropertyAccessabilityType;
|
||||
field: IntegrationField;
|
||||
value?: string | null;
|
||||
isDefined: boolean;
|
||||
};
|
||||
|
||||
export type AppIntegrationPropertyAccessabilityType = 'private' | 'public';
|
||||
|
||||
type ConfigAppIntegrationPropertyType = Omit<AppIntegrationPropertyType, 'isDefined'>;
|
||||
|
||||
export type IntegrationField = 'apiKey' | 'password' | 'username';
|
||||
|
||||
Reference in New Issue
Block a user