-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Successful Enrolment Page added #355
base: main
Are you sure you want to change the base?
Conversation
|
||
|
||
def showSuccessfulEnrolmentPage() : Action[AnyContent] = Action.async { implicit request => | ||
btaAuthorisedAction { implicit ar => |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ar
is not used, so remove implicit ar
and replace with _
ie:
{ _ => ...code }
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could you please fix indentation so it's easier to read :')
unfortunately without premium intellij we have to do it manually :(
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can add tests to make sure the hyper link and button are going to the correct places.
if design also required a back button(see jira ticket) then add testing for backlink too.
DL-14749 : Added Successful Enrolment Page