Skip to content

Commit 43e5d3b

Browse files
bugfix
1 parent be911f7 commit 43e5d3b

File tree

2 files changed

+34
-5
lines changed

2 files changed

+34
-5
lines changed

src/main/java/org/woehlke/twitterwall/frontend/controller/TaskController.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public String fetchTweetsFromTwitterSearchRequest(Model model) {
7272
String symbol = Symbols.TASK.toString();
7373
model = controllerHelper.setupPage(model,title,subtitle,symbol);
7474
this.fetchTweetsFromTwitterSearch();
75-
return "/scheduled/taskStarted";
75+
return "scheduled/taskStarted";
7676
}
7777

7878
@RequestMapping(path="/scheduled/tweets/update")
@@ -84,7 +84,7 @@ public String updateTweetsRequest(Model model) {
8484
String symbol = Symbols.TASK.toString();
8585
model = controllerHelper.setupPage(model,title,subtitle,symbol);
8686
this.updateTweets();
87-
return "/scheduled/taskStarted";
87+
return "scheduled/taskStarted";
8888
}
8989

9090
@RequestMapping(path="/scheduled/users/list/fetch")
@@ -96,7 +96,7 @@ public String fetchUsersFromDefinedUserListRequest(Model model){
9696
String symbol = Symbols.TASK.toString();
9797
model = controllerHelper.setupPage(model,title,subtitle,symbol);
9898
this.fetchUsersFromDefinedUserList();
99-
return "/scheduled/taskStarted";
99+
return "scheduled/taskStarted";
100100
}
101101

102102
@RequestMapping(path="/scheduled/users/mentions/update")
@@ -108,7 +108,7 @@ public String updateUserProfilesFromMentionsRequest(Model model){
108108
String symbol = Symbols.TASK.toString();
109109
model = controllerHelper.setupPage(model,title,subtitle,symbol);
110110
this.updateUserProfilesFromMentions();
111-
return "/scheduled/taskStarted";
111+
return "scheduled/taskStarted";
112112
}
113113

114114
@RequestMapping(path="/scheduled/users/update")
@@ -120,7 +120,7 @@ public String updateUserProfilesRequest(Model model) {
120120
String symbol = Symbols.TASK.toString();
121121
model = controllerHelper.setupPage(model,title,subtitle,symbol);
122122
this.updateUserProfiles();
123-
return "/scheduled/taskStarted";
123+
return "scheduled/taskStarted";
124124
}
125125

126126
@Async
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!DOCTYPE html>
2+
<html xmlns="http://www.w3.org/1999/xhtml"
3+
xmlns:th="http://www.thymeleaf.org"
4+
xmlns:spring="http://www.springframework.org/hashTags">
5+
<head th:include="layout :: tw-head">
6+
</head>
7+
<body id="page-top" class="page-2" style="padding-top:50px; padding-bottom:200px;">
8+
<header th:include="layout :: tw-header" >
9+
</header>
10+
<section>
11+
<div class="container">
12+
<div class="row">
13+
<div class="col-md-12">
14+
15+
<h2>Backend Task Started.</h2>
16+
17+
<span th:if="${page.historyBack}">
18+
<a href="javascript:history.back()"><i class="fa fa-arrow-circle-left" aria-hidden="true"></i>&nbsp;&nbsp;zurück</a>
19+
</span>
20+
</div>
21+
</div>
22+
</div>
23+
</section>
24+
<footer th:include="layout :: footer" >
25+
26+
</footer>
27+
</body>
28+
</html>
29+

0 commit comments

Comments
 (0)