Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Commit

Permalink
ADD: 로그아웃 시 BSM Auth도 같이 로그아웃
Browse files Browse the repository at this point in the history
  • Loading branch information
leehj050211 committed Mar 25, 2023
1 parent 18cbc47 commit aea60b5
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion components/common/sidebar/sidebarUserMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,18 @@ const SidebarUserMenu = () => {
onClick={logout}
order={2}
>
로그아웃
BSM만 로그아웃
</SidebarItem>
<SidebarItem
Icon={FiLogOut}
iconSize={24}
onClick={() => {
logout();
window.open('https://auth.bssm.kro.kr/logout', '_blank');
}}
order={3}
>
BSM Auth도 로그아웃
</SidebarItem>
</>;

Expand Down

0 comments on commit aea60b5

Please sign in to comment.