The UserActions controller is responsible for fetching user actions surrounding a given case creation event.

interface UserActions {
    state: UserActionsState;
    fetchUserActions(userId: string): void;
    logOpenUserActions(): void;
    subscribe(listener: (() => void)): Unsubscribe;
}

Hierarchy (view full)

Methods

Properties

The state of the UserActions controller.