Skip to content

Commit ebb5a65

Browse files
committed
SeriesImportController: rename methods.
No functional changes. [ci skip]
1 parent 72a871a commit ebb5a65

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/ru/mystamps/web/controller/SeriesImportController.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,13 @@ protected void initRequestImportForm(WebDataBinder binder) {
6060
}
6161

6262
@GetMapping(Url.REQUEST_IMPORT_SERIES_PAGE)
63-
public void showForm(Model model) {
63+
public void showRequestImportForm(Model model) {
6464
RequestImportForm requestImportForm = new RequestImportForm();
6565
model.addAttribute("requestImportForm", requestImportForm);
6666
}
6767

6868
@PostMapping(Url.REQUEST_IMPORT_SERIES_PAGE)
69-
public String processInput(
69+
public String processRequestImportForm(
7070
@Valid RequestImportForm form,
7171
BindingResult result,
7272
@CurrentUser Integer currentUserId) {
@@ -85,7 +85,7 @@ public String processInput(
8585
}
8686

8787
@GetMapping(Url.REQUEST_IMPORT_PAGE)
88-
public String showRequest(
88+
public String showRequestAndImportSeriesForm(
8989
@PathVariable("id") Integer requestId,
9090
Model model,
9191
Locale userLocale,

0 commit comments

Comments
 (0)