@@ -811,7 +811,7 @@ $scope.LaunchLimes = function(){
811
811
$scope . save = function ( ) {
812
812
813
813
var parameters = {
814
- endpoint : ConfigurationService . getSPARQLEndpoint ( ) ,
814
+ endpoint : AccountService . getUsername ( ) == null ? ConfigurationService . getPublicSPARQLEndpoint ( ) : ConfigurationService . getSPARQLEndpoint ( ) ,
815
815
uriBase : ConfigurationService . getUriBase ( )
816
816
} ;
817
817
@@ -1536,7 +1536,7 @@ var GeoliftCtrl = function($scope, $http, ConfigurationService, flash, ServerErr
1536
1536
1537
1537
var parameters = {
1538
1538
rdfFile : "result.ttl" ,
1539
- endpoint : ConfigurationService . getSPARQLEndpoint ( ) ,
1539
+ endpoint : AccountService . getUsername ( ) == null ? ConfigurationService . getPublicSPARQLEndpoint ( ) : ConfigurationService . getSPARQLEndpoint ( ) ,
1540
1540
graph : $scope . saveDataset . replace ( ':' , ConfigurationService . getUriBase ( ) ) ,
1541
1541
uriBase : ConfigurationService . getUriBase ( ) ,
1542
1542
username : AccountService . getUsername ( )
@@ -2107,7 +2107,7 @@ var TripleGeoCtrl = function($scope, $http, ConfigurationService, flash, ServerE
2107
2107
var parameters = {
2108
2108
rdfFile : "result." + fileType ,
2109
2109
fileType : fileType ,
2110
- endpoint : ConfigurationService . getSPARQLEndpoint ( ) ,
2110
+ endpoint : AccountService . getUsername ( ) == null ? ConfigurationService . getPublicSPARQLEndpoint ( ) : ConfigurationService . getSPARQLEndpoint ( ) ,
2111
2111
graph : $scope . saveDataset . replace ( ':' , ConfigurationService . getUriBase ( ) ) ,
2112
2112
uriBase : ConfigurationService . getUriBase ( ) ,
2113
2113
username : AccountService . getUsername ( )
0 commit comments