* allow a unique entity id per org * updated metadata url to support org * org specific login * org -> namespace * updated node and alpine * spacing tweak
6 lines
163 B
TypeScript
6 lines
163 B
TypeScript
const getEntityId = (entityId: string, namespace: string | undefined) => {
|
|
return namespace ? `${entityId}/${namespace}` : entityId;
|
|
};
|
|
|
|
export { getEntityId };
|