Skip to content

Commit

Permalink
change displayname from https to http
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Thiery committed May 19, 2017
1 parent 0cb2d06 commit af1c02b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/scripts/services/configservice.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ angular.module('labelsApp')
// host adress of the used labeling system api
this.host = "https://labeling.link";
// name of item servlet and vocabulary and concept instances
this.itemVocabulary = this.host + "/" + "item" + "/" + "vocab" + "/"; // dev item vocabulary - labeling.link item vocab
this.itemConcept = this.host + "/" + "item" + "/" + "concept" + "/"; // dev item label - labeling.link item concept
this.itemVocabulary = this.host.replace("https://","http://") + "/" + "item" + "/" + "vocab" + "/"; // dev item vocabulary - labeling.link item vocab
this.itemConcept = this.host.replace("https://","http://") + "/" + "item" + "/" + "concept" + "/"; // dev item label - labeling.link item concept

this.api = this.host + "/api/v1";

Expand Down

0 comments on commit af1c02b

Please sign in to comment.