You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description
Create a page for registering edx users. It should ask user to enter edX users details. Then request is made and the status of the job is being displayed.
There may be many edX users, so make sure it's convenient for user to insert information into system. Probably it will be wise to allow user enter information and then show them preview.
Steps
Create interface for user to enter edx users data. Each edX user is described with: username, email, password, first name, second name
After data is being inserted show user preview on how this system parses his result (it may be table or just a list which is easy to validate with human eye)
Send request
Display status message (success or fail)
Request
Your goal is to send HTTP POST on http://serverurl/massregister with payload:
Errors
There are several errors and methods to handle them:
code 401 => redirect to login page
code 200 but "statuses" is empty => there are no courses for this edx user, display a message for a user
code 200 but any "statuses.message" is not empty => display that users information with messages
Handle any other not successful response with generic error message
Acceptance Criteria
As a user, i may enter edx user details and register them. If error occurs, user should know what went wrong. If there are no errors, then user gets message about everything being ok.
The text was updated successfully, but these errors were encountered:
Description
Create a page for registering edx users. It should ask user to enter edX users details. Then request is made and the status of the job is being displayed.
There may be many edX users, so make sure it's convenient for user to insert information into system. Probably it will be wise to allow user enter information and then show them preview.
Steps
Request
Your goal is to send HTTP POST on
http://serverurl/massregister
with payload:Response
Even If only one user was created, then the status code should be 200 OK. Example of the response:
Errors
There are several errors and methods to handle them:
Acceptance Criteria
As a user, i may enter edx user details and register them. If error occurs, user should know what went wrong. If there are no errors, then user gets message about everything being ok.
The text was updated successfully, but these errors were encountered: