Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refac : 파일 이름 통일 #29

Merged
merged 1 commit into from
Jul 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class SystemActionLogViewController {

@GetMapping("/history/{shortCode}")
public String getSystemActionLogViewHome() {
return "system_action_log_board";
return "system_action_log_board_page";
}

@GetMapping("/logs")
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ public class MemberController {
*/
@GetMapping("/login")
public String loginPage() {
return "login";
return "login_page";
}

/**
* @return 회원가입 화면을 반환합니다.
*/
@GetMapping("/sign-up")
public String signUpPage() {
return "sign-up";
return "sign_up_page";
}
}

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ public class ShortenerViewController {
*/
@GetMapping("/main")
public String page() {
return "main";
return "main_page";
}

/**
* @return 메인 화면을 반환합니다.
*/
@GetMapping("/")
public String homePage() {
return "main";
return "main_page";
}

/**
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/templates/access_shortcode_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8">
<title>Shortcode Dashboard</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="/css/shortener/access_shortcode_page.css" type="text/css"/>
<link rel="stylesheet" href="/css/shortener/access_shortcode.css" type="text/css"/>
<link rel="stylesheet" href="/css/layout/layout.css" type="text/css"/>
<script src="/js/layout/layout.js"></script>
</head>
Expand Down Expand Up @@ -34,6 +34,6 @@ <h1 class="text-center mb-4">Shortcode Dashboard</h1>
</table>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="/js/shortener/access_shortcode_page.js"></script>
<script src="/js/shortener/access_shortcode.js"></script>
</body>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<title>URL SHORTENER SIGN-UP</title>
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/earlyaccess/notosanskr.css" rel="stylesheet">
<link rel="stylesheet" href="/css/member/sign-up.css" type="text/css"/>
<link rel="stylesheet" href="/css/member/sign_up.css" type="text/css"/>
<link rel="stylesheet" href="/css/font.css" type="text/css"/>
<script src="/js/member/sign-up.js"></script>
<script src="/js/member/sign_up.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/url-shortener-security
Loading