refactor: activity_logs → logs로 네이밍 통일
- DB 테이블: activity_logs → logs - 문서: activity-logs.md → logs.md - 컴포넌트: ActivityLogs.jsx → Logs.jsx - 라우트 import 업데이트 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
01cf083da2
commit
c6332c4f96
3 changed files with 4 additions and 4 deletions
|
|
@ -78,7 +78,7 @@ const ACTION_LABELS = {
|
|||
|
||||
const ITEMS_PER_PAGE = 15;
|
||||
|
||||
function ActivityLogs() {
|
||||
function Logs() {
|
||||
const { user } = useAdminAuth();
|
||||
|
||||
// 필터 상태
|
||||
|
|
@ -404,4 +404,4 @@ function ActivityLogs() {
|
|||
);
|
||||
}
|
||||
|
||||
export default ActivityLogs;
|
||||
export default Logs;
|
||||
|
|
@ -35,7 +35,7 @@ import AdminYouTubeEditForm from '@/pages/pc/admin/schedules/edit/YouTubeEditFor
|
|||
import AdminScheduleCategory from '@/pages/pc/admin/schedules/ScheduleCategory';
|
||||
import AdminScheduleDict from '@/pages/pc/admin/schedules/ScheduleDict';
|
||||
import AdminScheduleBots from '@/pages/pc/admin/schedules/ScheduleBots';
|
||||
import AdminActivityLogs from '@/pages/pc/admin/logs/ActivityLogs';
|
||||
import AdminLogs from '@/pages/pc/admin/logs/Logs';
|
||||
import AdminNotFound from '@/pages/pc/admin/common/NotFound';
|
||||
|
||||
/**
|
||||
|
|
@ -60,7 +60,7 @@ export default function AdminRoutes() {
|
|||
<Route path="/admin/schedule/categories" element={<RequireAuth><AdminScheduleCategory /></RequireAuth>} />
|
||||
<Route path="/admin/schedule/dict" element={<RequireAuth><AdminScheduleDict /></RequireAuth>} />
|
||||
<Route path="/admin/schedule/bots" element={<RequireAuth><AdminScheduleBots /></RequireAuth>} />
|
||||
<Route path="/admin/logs" element={<RequireAuth><AdminActivityLogs /></RequireAuth>} />
|
||||
<Route path="/admin/logs" element={<RequireAuth><AdminLogs /></RequireAuth>} />
|
||||
<Route path="/admin/*" element={<AdminNotFound />} />
|
||||
</Routes>
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue