Skip to content

Commit

Permalink
Merge pull request #66 from slibby/patch-1
Browse files Browse the repository at this point in the history
remove sceneServices check in Portal Login Page
  • Loading branch information
Jayson Ward authored Mar 21, 2018
2 parents 72be8c8 + f8bc814 commit 00d80bb
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions Portal/PortalSettingsPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -459,16 +459,12 @@ Rectangle {
if (readyState === NetworkRequest.ReadyStateComplete)
{
if (status === 200) {

console.log("self:", JSON.stringify(response, undefined, 2));

if (response.isPortal && !(response.supportsHostedServices && response.supportsSceneServices)) {
addPortalError.text = qsTr("Tile Package Kreator requires that Portal for ArcGIS 10.3.1 or later and is configured with a Hosted Server and ArcGIS Data Store");
} else {
if (response.isPortal) {
portalVersionRequest.send();
infoRequest.send();
}
}
}
}
}

Expand Down

0 comments on commit 00d80bb

Please sign in to comment.