Member Junction
    Preparing search index...

    Service to manage Developer Mode functionality across Explorer apps.

    Developer Mode shows additional debugging tools and developer-focused features in the UI. Only users with Developer, Admin, or System Administrator roles can enable developer mode.

    Settings are persisted using the MJ: User Settings entity via UserInfoEngine.

    Usage:

    constructor(private devMode: DeveloperModeService) {}

    async ngOnInit() {
    await this.devMode.Initialize(userEntity);

    // Subscribe to changes
    this.devMode.IsEnabled$.subscribe(enabled => {
    this.showDevTools = enabled;
    });
    }
    Index

    Constructors

    Accessors

    Methods