mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-23 00:28:03 +00:00

* Releases updated version of datahub-web client UI code * Fix typo in yarn lock * Change yarn lock to match yarn registry directories * Previous commit missed some paths * Even more changes to yarnlock missing in previous commit * Include codegen file for typings * Add files to get parity for datahub-web and current OS datahub-midtier * Add in typo fix from previous commit - change to proper license * Implement proper OS fix for person entity picture url * Workarounds for open source DH issues * Fixes institutional memory api and removes unopensourced tabs for datasets * Fixes search dataset deprecation and user search issue as a result of changes * Remove internal only options in the avatar menu
16 lines
763 B
TypeScript
16 lines
763 B
TypeScript
import { HandlerFunction } from 'ember-cli-mirage';
|
|
|
|
// Entity urn used to test entity feature onfigs
|
|
export const testUrn = 'urn:li:dataset:(urn:li:dataPlatform:hive,tracking.pageviewevent,PROD)';
|
|
|
|
// Feature target used to test entity feature configs
|
|
export const testTarget = 'appworx-deprecation';
|
|
|
|
// Gets the entity configs in the mock backend for entity configs
|
|
// TODO META-11235: Allow for entity feature configs container to batch targets
|
|
// This implementation currently reflects the behavior of the midtier, which only has one available target that returns a boolean instead of configs
|
|
export const getEntityConfigs: HandlerFunction = (): boolean => {
|
|
// TODO META-11247: Fix issue with mirage not importing model into data portal
|
|
return true;
|
|
};
|