This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
profile-info.model.ts 324 B
Newer Older
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
export interface InfoResponse {
  'display-ribbon-on-profiles'?: string;
  git?: any;
  build?: any;
  activeProfiles?: string[];
}

export class ProfileInfo {
  constructor(
    public activeProfiles?: string[],
    public ribbonEnv?: string,
    public inProduction?: boolean,
Michael Breu's avatar
Michael Breu committed
    public openAPIEnabled?: boolean
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
  ) {}
}