Conversation
Change Authentication Scheme
Merge Dev ke Uat 25 Feb 2018
| request | ||
| .get('/v1/migrationLog/get/report') | ||
| .set("authorization", `JWT ${jwt}`) | ||
| .set("authorization", `Bearer ${jwt}`) |
There was a problem hiding this comment.
'template literal syntax' is only available in ES6 (use 'esversion: 6').
| request | ||
| .get(`/master/products/byId?productList=${JSON.stringify(createdIds)}`) | ||
| .set("authorization", `JWT ${jwt}`) | ||
| .set("authorization", `Bearer ${jwt}`) |
There was a problem hiding this comment.
'template literal syntax' is only available in ES6 (use 'esversion: 6').
| .post(uri) | ||
| .send(data) | ||
| .set("authorization", `JWT ${jwt}`) | ||
| .set("authorization", `Bearer ${jwt}`) |
There was a problem hiding this comment.
'template literal syntax' is only available in ES6 (use 'esversion: 6').
| .post(uri) | ||
| .send(data) | ||
| .set("authorization", `JWT ${jwt}`) | ||
| .set("authorization", `Bearer ${jwt}`) |
There was a problem hiding this comment.
'template literal syntax' is only available in ES6 (use 'esversion: 6').
| request | ||
| .get('/v1/master/kurs-budgets/by-code') | ||
| .set("authorization", `JWT ${jwt}`) | ||
| .set("authorization", `Bearer ${jwt}`) |
There was a problem hiding this comment.
'template literal syntax' is only available in ES6 (use 'esversion: 6').
| .put(`${uri}/${createdData._id}`) | ||
| .send(createdData) | ||
| .set("authorization", `JWT ${jwt}`) | ||
| .set("authorization", `Bearer ${jwt}`) |
There was a problem hiding this comment.
'template literal syntax' is only available in ES6 (use 'esversion: 6').
| .put(`${uri}/${new ObjectId()}`) | ||
| .send(createdData) | ||
| .set("authorization", `JWT ${jwt}`) | ||
| .set("authorization", `Bearer ${jwt}`) |
There was a problem hiding this comment.
'template literal syntax' is only available in ES6 (use 'esversion: 6').
| request | ||
| .get(createdDataLocation) | ||
| .set("authorization", `JWT ${jwt}`) | ||
| .set("authorization", `Bearer ${jwt}`) |
There was a problem hiding this comment.
'template literal syntax' is only available in ES6 (use 'esversion: 6').
| .post(uri) | ||
| .send(data) | ||
| .set("authorization", `JWT ${jwt}`) | ||
| .set("authorization", `Bearer ${jwt}`) |
There was a problem hiding this comment.
'template literal syntax' is only available in ES6 (use 'esversion: 6').
| .post(uri) | ||
| .send({}) | ||
| .set("authorization", `JWT ${jwt}`) | ||
| .set("authorization", `Bearer ${jwt}`) |
There was a problem hiding this comment.
'template literal syntax' is only available in ES6 (use 'esversion: 6').
No description provided.