-
Notifications
You must be signed in to change notification settings - Fork 14
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
#3315 - Content: Ministry: Student Requests Exceptions #4274
#3315 - Content: Ministry: Student Requests Exceptions #4274
Conversation
andrepestana-aot
commented
Jan 21, 2025
•
edited
Loading
edited
- Revised title and subtitle;
- Expanded "Name" column into "Given names" and "Last name";
@@ -38,6 +38,7 @@ export interface ApplicationExceptionSummaryAPIOutDTO { | |||
applicationId: number; | |||
studentId: number; | |||
submittedDate: Date; | |||
fullName: string; | |||
givenNames: 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.
given names is optional.
@@ -61,6 +61,7 @@ export class ApplicationExceptionSummaryAPIOutDTO { | |||
applicationId: number; | |||
studentId: number; | |||
submittedDate: Date; | |||
fullName: string; | |||
givenNames: 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.
given names optional
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.
Great job @andrepestana-aot. Left 2 minor comments. Please have a look
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.
LGTM, nice work @andrepestana-aot
|