46 lines
1.2 KiB
JavaScript
46 lines
1.2 KiB
JavaScript
import { getConfig } from '@edx/frontend-platform';
|
|
import { getAuthenticatedHttpClient, getHttpClient } from '@edx/frontend-platform/auth';
|
|
import * as QueryString from 'query-string';
|
|
|
|
export async function registerRequest(registrationInformation) {
|
|
const requestConfig = {
|
|
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
|
|
isPublic: true,
|
|
};
|
|
|
|
const { data } = await getAuthenticatedHttpClient()
|
|
.post(
|
|
`${getConfig().LMS_BASE_URL}/api/user/v2/account/registration/`,
|
|
QueryString.stringify(registrationInformation),
|
|
requestConfig,
|
|
)
|
|
.catch((e) => {
|
|
throw (e);
|
|
});
|
|
|
|
return {
|
|
redirectUrl: data.redirect_url || `${getConfig().LMS_BASE_URL}/dashboard`,
|
|
success: data.success || false,
|
|
};
|
|
}
|
|
|
|
export async function getFieldsValidations(formPayload) {
|
|
const requestConfig = {
|
|
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
|
|
};
|
|
|
|
const { data } = await getHttpClient()
|
|
.post(
|
|
`${getConfig().LMS_BASE_URL}/api/user/v1/validation/registration`,
|
|
QueryString.stringify(formPayload),
|
|
requestConfig,
|
|
)
|
|
.catch((e) => {
|
|
throw (e);
|
|
});
|
|
|
|
return {
|
|
fieldValidations: data,
|
|
};
|
|
}
|