Skip to content

Commit 351b4c4

Browse files
Merge pull request #51 from code-review-platform-flow/FLOW-200
feat: like 경로 api 추가
2 parents afcafa5 + fff1540 commit 351b4c4

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/main/resources/application-dev.yml

+14
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,20 @@ spring:
9393
filters:
9494
- name: AuthenticationFilter
9595

96+
- id: comment-route-non-auth
97+
uri: ${MAIN_ROUTE_ADDRESS}
98+
predicates:
99+
- Path=/like/**
100+
- Method=GET
101+
102+
- id: comment-route-auth
103+
uri: ${MAIN_ROUTE_ADDRESS}
104+
predicates:
105+
- Path=/like/**
106+
- Method=POST,PATCH,DELETE
107+
filters:
108+
- name: AuthenticationFilter
109+
96110
- id: user-route-non-auth
97111
uri: ${MAIN_ROUTE_ADDRESS}
98112
predicates:

0 commit comments

Comments
 (0)