-
Notifications
You must be signed in to change notification settings - Fork 14
#4567 Ministry View Change Request Revamp (Ministry List UI) - Part -1 #4676
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
Conversation
|
@@ -0,0 +1,12 @@ | |||
/** |
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.
We can review the DTO once it is the final version.
As a minor comment, the "change request ID" is actually the application ID itself.
The studentId
is probably not required and can be added later, if needed.
To allow the proper redirect, the parentApplicationId
will be required.
This would be a recommended DTO, but we need also ensure the pagination.
If this is just used as a place holder, feel free to move ahead.
export class ApplicationChangeRequestPendingSummaryAPIOutDTO {
applicationId: number;
parentApplicationId: number;
submittedDate: Date;
firstName?: string;
lastName: string;
applicationNumber: string;
}
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.
Thanks for the review.
Will adjust in next PR.
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.
Nice start, only one comment but it can be adjusted in the upcoming PR.
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.
Nice work @bidyashish 👍 Thanks for creating the controller. 😄
New Template API for
application-change-request