File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed
Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -88,6 +88,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
8888 new AntPathRequestMatcher ("/company/**" , "GET" ),
8989 new AntPathRequestMatcher ("/admin/login" ),
9090 new AntPathRequestMatcher ("/feedback" , "POST" ),
91+ new AntPathRequestMatcher ("/dev/**" ),
9192 new AntPathRequestMatcher ("/loginTest" )
9293 ).permitAll ()
9394 .anyRequest ().authenticated ()
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ public ResponseEntity<Void> deletePosition(@PathVariable("positionId") UUID posi
6767 }
6868
6969 // 기업 탭 - 직무별 코테정보 조회
70- @ GetMapping ("tab/testInfo/{positionId}" )
70+ @ GetMapping ("/ tab/testInfo/{positionId}" )
7171 public ResponseEntity <PositionTabDto > getPositionInfo (@ PathVariable ("positionId" ) UUID positionId ) {
7272 // 인증 상태 확인
7373 Authentication authentication = SecurityContextHolder .getContext ().getAuthentication ();
@@ -82,4 +82,11 @@ public ResponseEntity<PositionTabDto> getPositionInfo(@PathVariable("positionId"
8282
8383 return ResponseEntity .ok (positionTabDto );
8484 }
85+
86+ // dev test - 직무별 코테정보 조회
87+ @ GetMapping ("/dev/testInfo/{positionId}" )
88+ public ResponseEntity <PositionDto > getPositionInfoDev (@ PathVariable ("positionId" ) UUID positionId ) {
89+ PositionDto positionDto = positionService .getPosition (positionId );
90+ return ResponseEntity .ok (positionDto );
91+ }
8592}
Original file line number Diff line number Diff line change 1414@ AllArgsConstructor
1515public class PositionDto {
1616 private UUID positionId ;
17- private Boolean isOfficial ;
1817 private String positionName ;
18+ private Boolean isOfficial ;
1919 private List <String > supportLanguages ;
2020 private String testTime ;
2121 private String problemInfo ;
You can’t perform that action at this time.
0 commit comments