asap-feed-beta 12.6.4 → 12.6.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1246,10 +1246,13 @@
1246
1246
  var formData = new FormData();
1247
1247
  formData.append('file', data);
1248
1248
  /** @type {?} */
1249
+ var client_id = localStorage.getItem('client');
1250
+ /** @type {?} */
1249
1251
  var req = new http.HttpRequest('POST', 'http://api.tecnologiaasap.com.br/api/cloudinary/upload', formData, {
1250
1252
  reportProgress: true,
1251
1253
  responseType: 'json',
1252
- headers: new http.HttpHeaders(this.getHeaders())
1254
+ headers: new http.HttpHeaders(this.getHeaders()),
1255
+ params: new http.HttpParams().set('client_id', client_id)
1253
1256
  });
1254
1257
  console.log('RESPONSE UPLOAD', req);
1255
1258
  return this.http.request(req);