Forked from an inaccessible project.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
actions.ts 398 B
import { Action } from '@ngrx/store';
import { UserPreferences } from '@app/core/models/user-preferences';
export enum UserPreferencesActionTypes {
UpdateUserPreferences = '[User Preferences] Update',
}
export class UpdateUserPreferences implements Action {
public readonly type = UserPreferencesActionTypes.UpdateUserPreferences;
constructor(public payload: Partial<UserPreferences>) {}
}