Skip to content

Commit 57097f1

Browse files
author
bnasslahsen
committed
Failed load UI behind reverse proxy (Failed to load API definition). Fixes #736
1 parent 349e973 commit 57097f1

File tree

22 files changed

+725
-354
lines changed

22 files changed

+725
-354
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
package org.springdoc.core;
2+
3+
/**
4+
* @author bnasslahsen
5+
*/
6+
7+
/**
8+
* The enum Direction.
9+
* @author bnasslahsen
10+
*/
11+
public enum Direction {
12+
/**
13+
*Asc direction.
14+
*/
15+
ASC,
16+
/**
17+
*Desc direction.
18+
*/
19+
DESC;
20+
21+
/**
22+
* Is ascending boolean.
23+
*
24+
* @return the boolean
25+
*/
26+
public boolean isAscending() {
27+
return this.equals(ASC);
28+
}
29+
}

0 commit comments

Comments
 (0)