비밀번호 변경

This commit is contained in:
현성필
2025-01-31 16:33:40 +09:00
parent c2b99b31dc
commit c36a446f7c
5 changed files with 215 additions and 2 deletions
@@ -7,6 +7,7 @@ import MockRouteEditDialog from '@/components/mock-route/MockRouteEditDialog.jsx
import TCPServerEditDialog from '@/components/tcp-servers/TCPServerEditDialog.jsx';
import QueueEditDialog from '@/components/queues/QueueEditDialog.jsx';
import UserEditDialog from '@/components/users/UserEditDialog.jsx';
import PasswordChangeDialog from '@/components/account/PasswordChangeDialog.jsx';
const DialogManager = ({
showAddApi,
@@ -18,6 +19,7 @@ const DialogManager = ({
showQueueEdit,
showUserEdit,
selectedItem,
showPasswordChange,
onDialogChange
}) => {
@@ -58,6 +60,10 @@ const DialogManager = ({
onOpenChange={(isOpen) => onDialogChange('showUserEdit', isOpen)}
item={selectedItem}
/>
<PasswordChangeDialog
open={showPasswordChange}
onOpenChange={(isOpen) => onDialogChange('showPasswordChange', isOpen)}
/>
</>;
}