Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 208x 208x 208x 208x 208x 208x | import { createAction } from '@ngrx/store';
import { SsoRegistrationType } from 'ish-core/models/customer/customer.model';
import { httpError, payload } from 'ish-core/utils/ngrx-creators';
export const setRegistrationInfo = createAction(
'[SSO Registration] Set Registration Info',
payload<SsoRegistrationType>()
);
export const registerSuccess = createAction('[SSO Registration API] Register Customer Success');
export const registerFailure = createAction('[SSO Registration API] Register Customer Failure', httpError());
export const cancelRegistration = createAction('[SSO Registration] Cancel Registration');
|