-
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.
Merge pull request #4 from mynameisjaehoon/feature
Feature
- Loading branch information
Showing
128 changed files
with
8,326 additions
and
324 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
This file was deleted.
Oops, something went wrong.
38 changes: 38 additions & 0 deletions
38
src/main/java/mangmae/gongnomok/controller/accessory/AccessoryController.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,38 @@ | ||
package mangmae.gongnomok.controller.accessory; | ||
|
||
import org.springframework.stereotype.Controller; | ||
import org.springframework.web.bind.annotation.GetMapping; | ||
import org.springframework.web.bind.annotation.RequestMapping; | ||
|
||
|
||
@Controller | ||
@RequestMapping("/accessory") | ||
public class AccessoryController { | ||
|
||
//홀리 크로스링 | ||
@GetMapping("/holy-cross-earring") | ||
public String holyCrossRing() { | ||
return "item/accessory/holy-cross-earring-select"; | ||
} | ||
|
||
@GetMapping("/holy-cross-earring-health") | ||
public String holyCrossRingHealth() { | ||
return "item/accessory/holy-cross-earring-hp"; | ||
} | ||
|
||
@GetMapping("/holy-cross-earring-swift") | ||
public String holyCrossRingSwift() { | ||
return "item/accessory/holy-cross-earring-dex"; | ||
} | ||
|
||
@GetMapping("/holy-cross-earring-intel") | ||
public String holyCrossRingIntel() { | ||
return "item/accessory/holy-cross-earring-int"; | ||
} | ||
|
||
@GetMapping("/holy-cross-earring-lucky") | ||
public String holyCrossRingLucky() { | ||
return "item/accessory/holy-cross-earring-luk"; | ||
} | ||
|
||
} |
Oops, something went wrong.