add ai-service

This commit is contained in:
박세원
2025-10-27 11:09:12 +09:00
parent 50cf1dbcf1
commit f0699b2e2b
54 changed files with 3956 additions and 5 deletions
+5 -2
View File
@@ -1,4 +1,6 @@
# 백엔드 개발 가이드
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0# 백엔드 개발 가이드
[요청사항]
@@ -601,7 +603,7 @@ public class UserPrincipal {
/**
* 일반 사용자 권한 여부 확인
*/
return "USER".equals(authority) || authority == null;
public boolean isUser() {
return "USER".equals(authority) ||
100 22883 100 22883 0 0 76277 0 --:--:-- --:--:-- --:--:-- 76788authority == null;
}
@@ -660,3 +662,4 @@ public class SwaggerConfig {
.bearerFormat("JWT")
.scheme("bearer");
}
}