Skip to content

Commit

Permalink
Merge e92a2f0 into 04f9e56
Browse files Browse the repository at this point in the history
  • Loading branch information
paterczm committed Apr 27, 2015
2 parents 04f9e56 + e92a2f0 commit bfd6309
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 2 additions & 0 deletions common/src/main/webapp/js/lightblue-apps.js
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,7 @@ function callLightblue(uri, jsonData, method) {
var request = $.ajax({
type: method,
url: metadataServicePath + uri,
contentType: "application/json",
data: JSON.stringify(jsonData)
});

Expand All @@ -253,6 +254,7 @@ function loadVersions() {
var request = $.ajax({
type: "GET",
url: metadataServicePath + "health",
contentType: "application/json",
dataType: "html"
});

Expand Down
2 changes: 1 addition & 1 deletion common/src/main/webapp/js/lightblue-config.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
var metadataServicePath = "/app/metadata/rest-request/";
var metadataServicePath = "rest-request/";
2 changes: 2 additions & 0 deletions common/src/main/webapp/js/lightblue-roles.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
// This file will be loaded only if RolesServlet isn't. Useful for development without a servlet container.
window.roles = ['lightblue-metadata-admin', 'authenticated'];
4 changes: 2 additions & 2 deletions data-mgmt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>0.0.20</version>
<version>0.0.23</version>
<executions>
<execution>
<id>install node and npm</id>
Expand Down Expand Up @@ -122,4 +122,4 @@
</build>
</profile>
</profiles>
</project>
</project>

0 comments on commit bfd6309

Please sign in to comment.