aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/custom-measures/custom-measure.js
diff options
context:
space:
mode:
authorStas Vilchik <stas-vilchik@users.noreply.github.com>2017-03-17 09:10:48 +0100
committerGitHub <noreply@github.com>2017-03-17 09:10:48 +0100
commitde4365079bad2df3bdee2133576dc913ffbf1ab2 (patch)
treea522ccb952f0d37f454e8188e13b3dec3f731912 /server/sonar-web/src/main/js/apps/custom-measures/custom-measure.js
parent6a03df65cc0c91a26150ea172a2c480e07326ea1 (diff)
downloadsonarqube-de4365079bad2df3bdee2133576dc913ffbf1ab2.tar.gz
sonarqube-de4365079bad2df3bdee2133576dc913ffbf1ab2.zip
format code using prettier (#1774)
Diffstat (limited to 'server/sonar-web/src/main/js/apps/custom-measures/custom-measure.js')
-rw-r--r--server/sonar-web/src/main/js/apps/custom-measures/custom-measure.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/server/sonar-web/src/main/js/apps/custom-measures/custom-measure.js b/server/sonar-web/src/main/js/apps/custom-measures/custom-measure.js
index 3d3a550a877..1338212736a 100644
--- a/server/sonar-web/src/main/js/apps/custom-measures/custom-measure.js
+++ b/server/sonar-web/src/main/js/apps/custom-measures/custom-measure.js
@@ -24,11 +24,11 @@ import Backbone from 'backbone';
export default Backbone.Model.extend({
idAttribute: 'id',
- urlRoot () {
+ urlRoot() {
return window.baseUrl + '/api/custom_measures';
},
- sync (method, model, options) {
+ sync(method, model, options) {
const opts = options || {};
if (method === 'create') {
defaults(opts, {
@@ -54,4 +54,3 @@ export default Backbone.Model.extend({
return Backbone.ajax(opts);
}
});
-