diff options
author | Phil Hughes <me@iamphill.com> | 2017-05-16 10:26:56 +0100 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2017-05-16 10:26:56 +0100 |
commit | 5f2b142b66ed8f355b36b91907ca9bea17c070f2 (patch) | |
tree | 519051c3c58ee09fcb600dc413011208927e3554 /app/assets/javascripts/issue_show/services | |
parent | a0f7ee433e5c63cd96965f7025f374627c82de77 (diff) | |
parent | 8b66e42b6c3a2396c01ba095f42866cb4f035419 (diff) | |
download | gitlab-ce-5f2b142b66ed8f355b36b91907ca9bea17c070f2.tar.gz |
Merge branch 'master' into issue-edit-inline
Diffstat (limited to 'app/assets/javascripts/issue_show/services')
-rw-r--r-- | app/assets/javascripts/issue_show/services/index.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/assets/javascripts/issue_show/services/index.js b/app/assets/javascripts/issue_show/services/index.js index 5da15882c25..0ceff34cf8b 100644 --- a/app/assets/javascripts/issue_show/services/index.js +++ b/app/assets/javascripts/issue_show/services/index.js @@ -8,15 +8,15 @@ export default class Service { this.endpoint = endpoint; this.resource = Vue.resource(this.endpoint, {}, { - rendered_title: { + realtimeChanges: { method: 'GET', - url: `${this.endpoint}/rendered_title`, + url: `${this.endpoint}/realtime_changes`, }, }); } getData() { - return this.resource.rendered_title(); + return this.resource.realtimeChanges(); } deleteIssuable() { |