File tree 1 file changed +3
-3
lines changed
src/main/java/ru/mystamps/web/controller 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -60,13 +60,13 @@ protected void initRequestImportForm(WebDataBinder binder) {
60
60
}
61
61
62
62
@ GetMapping (Url .REQUEST_IMPORT_SERIES_PAGE )
63
- public void showForm (Model model ) {
63
+ public void showRequestImportForm (Model model ) {
64
64
RequestImportForm requestImportForm = new RequestImportForm ();
65
65
model .addAttribute ("requestImportForm" , requestImportForm );
66
66
}
67
67
68
68
@ PostMapping (Url .REQUEST_IMPORT_SERIES_PAGE )
69
- public String processInput (
69
+ public String processRequestImportForm (
70
70
@ Valid RequestImportForm form ,
71
71
BindingResult result ,
72
72
@ CurrentUser Integer currentUserId ) {
@@ -85,7 +85,7 @@ public String processInput(
85
85
}
86
86
87
87
@ GetMapping (Url .REQUEST_IMPORT_PAGE )
88
- public String showRequest (
88
+ public String showRequestAndImportSeriesForm (
89
89
@ PathVariable ("id" ) Integer requestId ,
90
90
Model model ,
91
91
Locale userLocale ,
You can’t perform that action at this time.
0 commit comments