Skip to content

Commit 81b3681

Browse files
committed
Wip for #684
And back to SNAPSHOT
1 parent 2f92f82 commit 81b3681

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

dashboard-gui/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<parent>
33
<groupId>org.openconext</groupId>
44
<artifactId>dashboard</artifactId>
5-
<version>13.0.10</version>
5+
<version>13.0.11-SNAPSHOT</version>
66
<relativePath>../pom.xml</relativePath>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>

dashboard-server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>org.openconext</groupId>
2121
<artifactId>dashboard</artifactId>
22-
<version>13.0.10</version>
22+
<version>13.0.11-SNAPSHOT</version>
2323
<relativePath>../pom.xml</relativePath>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>

dashboard-server/src/main/java/dashboard/sab/SabRest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public List<SabPerson> getPersonsInRoleForOrganization(String organisationGuid,
4141
return Collections.emptyList();
4242
}
4343

44-
String url = String.format("%s/profile?guid={organisationGuid}&role={role}", restEndPointURL);
44+
String url = String.format("%s?guid={organisationGuid}&role={role}", restEndPointURL);
4545
Map<String, Object> results = restTemplate.getForEntity(
4646
url,
4747
Map.class,

dashboard-server/src/test/java/dashboard/sab/SabRestTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public class SabRestTest {
3939
private final Sab sab = new SabRest(new ClassPathResourceManage(),
4040
"user",
4141
"secret",
42-
"http://localhost:8891/api");
42+
"http://localhost:8891/api/profile");
4343

4444

4545
@Test

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
<groupId>org.openconext</groupId>
3333
<artifactId>dashboard</artifactId>
34-
<version>13.0.10</version>
34+
<version>13.0.11-SNAPSHOT</version>
3535
<name>dashboard</name>
3636
<description>OpenConext-Dashboard</description>
3737
<inceptionYear>2012</inceptionYear>

0 commit comments

Comments
 (0)