Changed ticket summary service path

This commit is contained in:
Joan Sanchez 2018-05-14 10:07:22 +02:00
parent fa222ab398
commit 325aae7ebd
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ class Controller {
if (!this.ticket)
return;
this.$http.get(`/client/api/Tickets/${this.ticket.id}/summary`).then(res => {
this.$http.get(`/ticket/api/Tickets/${this.ticket.id}/summary`).then(res => {
if (res && res.data)
this.summary = res.data;
});