- 초대 로직 변경: 이메일→휴대폰 기반 초대 전환 및 UI 업데이트
eapim-portal CI / build (push) Has been cancelled
eapim-portal Test / test (push) Has been cancelled

- 알림 수신 동의 추가: 초대/취소 시 알림 발송 옵션 탑재
- 관리자 기능 추가: 소속 제외 및 권한 조정 기능 구현
This commit is contained in:
Rinjae
2026-06-23 20:58:27 +09:00
parent 53468c3b83
commit 84d92fced9
26 changed files with 648 additions and 198 deletions
+17
View File
@@ -33,6 +33,15 @@ spring:
max-age: 0
must-revalidate: true
no-cache: true
# 정적자원 콘텐츠 해시 버전닝: /css/main.css -> /css/main-<hash>.css 자동 치환.
# 내용이 바뀌면 URL이 바뀌어 강제 새로고침 없이 캐시가 무효화됨.
# 비-prod 는 app.resource-versioning.enabled 파라미터로 제어(기본 ON),
# false 로 두면 버전닝을 꺼서 sourceMap 디버깅이 가능. (prod 는 application-prod.yml 에서 항상 ON)
chain:
strategy:
content:
enabled: ${app.resource-versioning.enabled:true}
paths: /**
jta:
enabled: true
@@ -49,6 +58,14 @@ spring:
cache: false
main:
allow-bean-definition-overriding: true
# 정적자원 해시 버전닝 토글 (prod 제외 전 프로파일에 적용).
# false 로 변경 시 /css/main.css 가 해시 없이 그대로 서빙되어 sourceMap 디버깅 가능.
# prod 는 application-prod.yml 에서 항상 ON 으로 고정되어 이 값을 무시함.
app:
resource-versioning:
enabled: true
security:
basic:
enabled: false