File tree 4 files changed +16
-6
lines changed
java/com/parallax/server/blocklyprop/rest
resources/com/parallax/server/blocklyprop/internationalization
4 files changed +16
-6
lines changed Original file line number Diff line number Diff line change 12
12
# /src/main/java/com/parallax/server/blocklyprop/db/generated/*
13
13
#
14
14
15
+ * .sh
16
+
17
+
15
18
# ################
16
19
# # NetBeans
17
20
# ################
Original file line number Diff line number Diff line change 549
549
<version >4.12</version >
550
550
<scope >test</scope >
551
551
</dependency >
552
- </dependencies >
552
+
553
+ <!-- https://mvnrepository.com/artifact/org.jetbrains/annotations -->
554
+ <dependency >
555
+ <groupId >org.jetbrains</groupId >
556
+ <artifactId >annotations</artifactId >
557
+ <version >17.0.0</version >
558
+ </dependency >
559
+ </dependencies >
553
560
</project >
Original file line number Diff line number Diff line change @@ -163,14 +163,14 @@ public Response get(
163
163
164
164
// Sort flag evaluation
165
165
if (!restProjectUtils .ValidateSortType (sort )) {
166
- LOG .warn ("{} Sort parameter failed" , endPoint );
167
- return Response . status ( Response . Status . NOT_ACCEPTABLE ). build () ;
166
+ LOG .warn ("{} Sort parameter failed. Defaulting to sort by project name " , endPoint );
167
+ sort = TableSort . name ;
168
168
}
169
169
170
170
// Sort order evaluation
171
171
if (!restProjectUtils .ValidateSortOrder (order )) {
172
- LOG .warn ("{} Sort order parameter failed" , endPoint );
173
- return Response . status ( Response . Status . NOT_ACCEPTABLE ). build () ;
172
+ LOG .warn ("{} Sort order parameter failed. Defaulting to ascending order " , endPoint );
173
+ order = TableOrder . asc ;
174
174
}
175
175
176
176
// Limit result set value
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ footer.clientdownloadlink = BlocklyProp-client
28
28
# Application version numbers.
29
29
application.major = 1
30
30
application.minor = 1
31
- application.build = 452
31
+ application.build = 453
32
32
33
33
html.content_missing = Content missing
34
34
You can’t perform that action at this time.
0 commit comments