Skip to content

Commit

Permalink
Merge pull request #29 from selab-hs/develop
Browse files Browse the repository at this point in the history
refac : 파일 이름 통일
  • Loading branch information
HwangHarim authored Jul 17, 2024
2 parents b4ba133 + 1267327 commit afcdff8
Show file tree
Hide file tree
Showing 16 changed files with 10 additions and 82 deletions.
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/[email protected]/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>
File renamed without changes.
File renamed without changes.
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

0 comments on commit afcdff8

Please sign in to comment.