-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8c14b67
commit af0f074
Showing
84 changed files
with
43,179 additions
and
2,583 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
src/main/java/ndk/banee/spring_store/controllers/AdminIndexPageController.java
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package ndk.banee.spring_store.controllers; | ||
|
||
import org.springframework.stereotype.Controller; | ||
import org.springframework.web.bind.annotation.GetMapping; | ||
|
||
@Controller | ||
public class AdminIndexPageController { | ||
|
||
@GetMapping("/admin") | ||
public String viewClientIndexPage() { | ||
|
||
return "admin/index"; | ||
} | ||
} |
Oops, something went wrong.