-
Notifications
You must be signed in to change notification settings - Fork 0
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
GRAD2-3064 - Refactor institute endpoints in EDUC-GRAD-TRAX-API #378
Conversation
api/src/main/java/ca/bc/gov/educ/api/trax/service/institute/SchoolService.java
Dismissed
Show dismissed
Hide dismissed
api/src/main/java/ca/bc/gov/educ/api/trax/service/institute/SchoolService.java
Dismissed
Show dismissed
Hide dismissed
api/src/main/java/ca/bc/gov/educ/api/trax/service/institute/SchoolService.java
Dismissed
Show dismissed
Hide dismissed
api/src/main/java/ca/bc/gov/educ/api/trax/service/institute/SchoolService.java
Dismissed
Show dismissed
Hide dismissed
@PreAuthorize(PermissionsConstants.READ_SCHOOL_DATA) | ||
@Operation(summary = "Find School Details by Mincode from cache", description = "Get School Details by Mincode from cache", tags = { "School" }) | ||
@ApiResponses(value = {@ApiResponse(responseCode = "200", description = "OK"), | ||
@ApiResponse(responseCode = "204", description = "NO CONTENT")}) | ||
public ResponseEntity<SchoolDetail> getSchoolDetailsByMincode(@PathVariable String minCode) { | ||
public ResponseEntity<SchoolDetail> getSchoolDetailsByParams(@RequestParam(required = false) String minCode) { | ||
log.debug("getSchoolDetails V2 : "); |
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.
Just minor... the same log as getSchoolDetailsById at line 131 makes me hard to trace in debug mode.
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.
Added proper Debug messages.
Quality Gate failedFailed conditions |
GRAD2-3064 - Refactor institute endpoints in EDUC-GRAD-TRAX-API