-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from jinseok1006/maintenance
oidc 에러 핸들링 추가
- Loading branch information
Showing
5 changed files
with
25 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,7 @@ jobs: | |
NODE_ENV: production | ||
VITE_KEYCLOAK_URL: https://key.jbnu.ac.kr | ||
VITE_KEYCLOAK_REALMS: JEduTools | ||
VITE_ADMIN_EMAIL: [email protected] | ||
|
||
- name: Create CNAME | ||
run: echo "jedutools.jbnu.ac.kr" > ./dist/CNAME | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,8 @@ import Button from "@mui/material/Button"; | |
import Container from "@mui/material/Container"; | ||
import Box from "@mui/material/Box"; | ||
|
||
const ADMIN_EMAIL = import.meta.env.VITE_ADMIN_EMAIL; | ||
|
||
export default function Contact() { | ||
return ( | ||
<Container sx={{ my: 5, py: 5 }}> | ||
|
@@ -29,14 +31,15 @@ export default function Contact() { | |
startIcon={<Chat />} | ||
href="https://open.kakao.com/o/gXXXXX" // 카카오톡 오픈채팅 링크 | ||
target="_blank" | ||
disabled | ||
> | ||
카카오톡 오픈채팅방 | ||
</Button> | ||
<Button | ||
variant="contained" | ||
color="secondary" | ||
startIcon={<Email />} | ||
href="mailto:[email protected]" | ||
href={`mailto:${ADMIN_EMAIL}`} | ||
> | ||
문의 메일 보내기 | ||
</Button> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters