Skip to content
This repository was archived by the owner on Apr 22, 2022. It is now read-only.

Commit c29f3df

Browse files
author
taleksashina
committed
use prefix in account uri; import rdf servlet config fixed
1 parent f7f4d3b commit c29f3df

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/webapp/WEB-INF/web-template.xml

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

8989
<servlet>
9090
<servlet-name>ImportRDF</servlet-name>
91-
<servlet-class>ImportRDFServlet</servlet-class>
91+
<servlet-class>ImportRDF</servlet-class>
9292
</servlet>
9393

9494
<servlet-mapping>

src/main/webapp/js/services/login-service.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ module.factory("LoginService", function ($http, $location, $cookieStore, Account
2121
contentType: "application/x-www-form-urlencoded"
2222
}).then(function (response) {
2323
AccountService.setUsername(response.data.username);
24-
AccountService.setAccountURI(response.data.accountURI);
24+
AccountService.setAccountURI(response.data.accountURI.replace(ConfigurationService.getUriBase(), ':'));
2525
AccountService.setEmail(response.data.email);
2626
AccountService.setAdmin(response.data.admin);
2727
ConfigurationService.setSettingsGraph(response.data.settingsGraph);

0 commit comments

Comments
 (0)