Add isRemote field on object metadata (#4668)
Add isRemote field Co-authored-by: Thomas Trompette <thomast@twenty.com>
This commit is contained in:
@ -19,6 +19,7 @@ export function ObjectMetadata(
|
||||
targetTableName: 'DEPRECATED',
|
||||
isSystem,
|
||||
isCustom: false,
|
||||
isRemote: false,
|
||||
description: params.description,
|
||||
icon: params.icon,
|
||||
gate,
|
||||
|
||||
@ -14,5 +14,6 @@ export interface ReflectObjectMetadata extends ObjectMetadataDecoratorParams {
|
||||
targetTableName: string;
|
||||
isSystem: boolean;
|
||||
isCustom: boolean;
|
||||
isRemote: boolean;
|
||||
gate?: GateDecoratorParams;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user