Skip to content

Commit

Permalink
feat: removing tenant id from the library, changing the frameContext …
Browse files Browse the repository at this point in the history
…to portalContext for PortalConfig
  • Loading branch information
gkrajniaksap committed Sep 18, 2024
1 parent c521330 commit 4224a4d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
14 changes: 14 additions & 0 deletions src/lib/models/luigi.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
export interface LuigiConfig {
auth?: any;
routing?: any;
settings?: any;
lifecycleHooks?: any;
navigation?: any;
userSettings?: any;
globalSearch?: any;
}

export interface LuigiCustomMessage {
id: string;
}

export interface EntityDefinition {
id: string;
dynamicFetchId?: string;
Expand Down
15 changes: 1 addition & 14 deletions src/lib/services/luigi-core.service.ts
Original file line number Diff line number Diff line change
@@ -1,20 +1,7 @@
import { Injectable } from '@angular/core';
import { LuigiConfig, LuigiCustomMessage } from '../models';
const luigi = (globalThis as any).Luigi;

export interface LuigiConfig {
auth?: any;
routing?: any;
settings?: any;
lifecycleHooks?: any;
navigation?: any;
userSettings?: any;
globalSearch?: any;
}

export interface LuigiCustomMessage {
id: string;
}

@Injectable({
providedIn: 'root',
})
Expand Down

0 comments on commit 4224a4d

Please sign in to comment.