Use targeted role-scoped rights recalculation
SecurityRoleController now uses updateRoleMemberRightsApplied() to only recalculate members who have the modified role, instead of recalculating all members in ...
Dept, job title 및 역할 변경에 대한 타겟된 권리 재순환
- 부서서비스 : 영향을받는 부서의 회원만 재 계산 create/update/delete 후에 - JobTitleService: 영향을받는 구인 제목과 회원만 재 계산 create/update/delete 후에 - MemberRightsAppliedService: updateRoleMe...
Recalculate member rights applied 후 새로운 회원 생성
Calls updateMemberRights모든 회원에 적용 createOrganizationMember 과 createOrganizationTeamMember 그래서 모든 역할 권한은 즉시 적용됩니다.
Recalculate member_rights_applied after role create/update/delete
The member_rights_applied table was never recalculated when roles were modified, causing all members to have 0 applied rights. Now calls **************** after ...
Rebuild with updated shared library containing support permissions
SecurityService needs the new ACCEPT_SUPPORT_TICKETS and MANAGE_SUPPORT entries in RoleRightType enum to include them in *** session rights.
과립 역할 편집, 라벨 스왑 및 팀 구성원 지원
- add isAllowEditTitle 과 isAllowEditSecurity 에 SecurityRole 인터페이스 - 회원/팀 회원 역할에 보안 설정을 편집할 수 있습니다 (이전 완전히 잠겨) - "Members"와 "Team 회원"모직 org 행동 라벨과 제목을 교환 - 보호된 역...
Migrate Everyone role to Members and create Team Members role
- Rename ROLE_EVERYONE_ID column to ROLE_MEMBER_ID - Rename existing "Everyone (Applies To All)" roles to "Members" - Set **************** flags on existing sys...
Enforce role protection flags and add parent label support to session
- Enforce isAllowEditSecurity in SecurityRoleController update endpoint - Add parentMemberTitlePlural and parentTeamMemberTitlePlural to *** session - Resolve p...
Granular 역할 보호 깃발 및 팀 구성원 시스템 역할 추가
- add isAllowEditTitle 과 isAllowEditSecurity flags 에 OrgRole entity - 조직에 roleMemberID에 할당된 역할은 roleTeamMemberID를 추가합니다. - Rename "Allone (Applies To All)" org ...
TopicManager에서 부서 로딩
X-***-Token 헤더(matching DepartmentManager pattern) 및 data.departments 응답 모양에서 부를 추출하십시오.
.map 오류를 방지하기 위해 API 응답에 Array.isArray 가드 추가
API는 backend table 대신 배열 대신 오류 객체를 반환할 수 있습니다. 아직 없습니다. Array.isArray 체크와 모든 배열 작업을 감시합니다.
Enable redirect following for MaxMind download
MaxMind returns 302 redirect to the actual file. HttpClient wasn't following it, causing the sync to fail with HTTP 302.
Add Support section to settings page
Adds Topics, Notifications, and Status & Response Times cards that link to /support?tab=settings.
Add SecurityConfig to permit daemon trigger and actuator endpoints
Spring Security defaults blocked all endpoints with 401. Added explicit config to permit /api/daemon/** and /actuator/** without authentication.
Allow 6 settings cards per row on xl screens and hide Club House nav item
Settings page grids now scale to 6 columns at xl breakpoint. Club House menu item commented out in NavPri.
Update ticket popup tool window to use light theme matching chatColors
Replace dark theme (dark backgrounds, white text, amber accents) with the light color scheme used by all other popup tool windows in the app.
Remove MANAGE_SUPPORT conditional from settings/analytics tabs, enable NavPri slide-out
All tabs now always visible. Removed disablePanel from NavPri Support entry so the slide-out panel works on hover.
Make description textarea fill remaining popup window height
Removed minRows/maxRows constraints and set flex layout on the input root so the textarea expands to fill all available vertical space.
Add manual job trigger controller with duplicate execution guard
POST /api/daemon/trigger/{jobName} triggers any Quartz job immediately. Returns 409 if the job is already executing. GET /api/daemon/trigger/status returns runn...
Temporarily set geolite sync cron to every 2 minutes for testing
Will revert to weekly Sunday 3 AM after confirming sync works.
Correct MediaObjImg 합성 키 대신 MediaObjImg UUID PK를 사용하는 FK
복합 FK (OBJ ID, IMG ID)는 유형의 비 PK 열을 참조 mismatch (uuid 대 int). OBJ IMG ID 참조에 단일 FK 변경 MediaObjImg.ID (UUID PK).
Hibernate EXTRACT (EPOCH) 제한을 피하기 위해 avg 해상도 시간의 기본 쿼리를 사용합니다
Hibernate 6은 EXTRACT (EPOCH ...에서)를 배회할 수 없습니다. (기간 유형, TEMPORAL). 기본 SQL 쿼리로 전환 CockroachDB는 기본적으로 처리합니다.
Remove old help system, add support nav items
Delete app/help/ and app/components/help/ directories. Add SupportButton to NavTop toolbar and Support menu item to NavPri sidebar navigation.
Add frontend types and API proxy routes
TypeScript interfaces for all support DTOs and 13 API proxy routes forwarding to MediaService for topics, tickets, and reporting endpoints.
Add support ticket services, REST controllers, and STOMP relay
Implements the MediaService backend for the support ticket system: - SupportTopicService: CRUD for org-scoped support topics - SupportAssignmentService: round-r...
Redesign AI processing toggle as labeled switch with Assistant icon
Replace icon button with a toggle switch using the MUI Assistant icon, labeled "Train AI With This Note". Moved to the left of the save button. Renamed "Create"...
Send session replay data to Kafka when available instead of direct ClickHouse insert
Add deep-linking support to notes page via query param
Support /notes?id={noteId} URL pattern so AI chat source links can navigate directly to a specific note. Opens the note in edit view when the page loads with an...
Include clickable source links in RAG context for AI chat
Update RagClient to embed markdown links in the context sent to the AI model. KB articles link to /kb/{guid}, notes link to /notes?id={noteId}. Instructs the mo...