diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2016-03-29 13:41:47 +0200 |
---|---|---|
committer | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2016-03-31 13:09:07 +0200 |
commit | 3142e872bcfa1eba2940efa4e4b45612bfc1dd64 (patch) | |
tree | b4c75819c85e0729d55fccd76660bcee0f8a068b /server/sonar-web/src/main/js/apps/coding-rules/app.js | |
parent | 491644917a5ebb44429ef45ee1885ed9728daf56 (diff) | |
download | sonarqube-3142e872bcfa1eba2940efa4e4b45612bfc1dd64.tar.gz sonarqube-3142e872bcfa1eba2940efa4e4b45612bfc1dd64.zip |
SONAR-7494 Web: Reintroduce the web app context
Diffstat (limited to 'server/sonar-web/src/main/js/apps/coding-rules/app.js')
-rw-r--r-- | server/sonar-web/src/main/js/apps/coding-rules/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/coding-rules/app.js b/server/sonar-web/src/main/js/apps/coding-rules/app.js index 813d04b1af6..ea4adc1cf3f 100644 --- a/server/sonar-web/src/main/js/apps/coding-rules/app.js +++ b/server/sonar-web/src/main/js/apps/coding-rules/app.js @@ -77,7 +77,7 @@ const init = function () { Backbone.history.start(); }; -const appXHR = $.get('/api/rules/app').done(function (r) { +const appXHR = $.get(window.baseUrl + '/api/rules/app').done(function (r) { App.canWrite = r.canWrite; App.qualityProfiles = _.sortBy(r.qualityprofiles, ['name', 'lang']); App.languages = _.extend(r.languages, { |