export const setRoleStatus = createAction(SET_ROLE_STATUS, action => (role: string, is: boolean) =>
            action({ role, is }),
        );