Optimize get_subscriptions AJAX

pull/598/head
Omar Roth 5 years ago
parent 1477f99c2c
commit 485a3e29e7
No known key found for this signature in database
GPG Key ID: B8254FB7EC3D37F2

@ -8,7 +8,7 @@ function get_subscriptions(callback, retries = 5) {
var xhr = new XMLHttpRequest();
xhr.responseType = 'json';
xhr.timeout = 10000;
xhr.open('GET', '/api/v1/auth/subscriptions', true);
xhr.open('GET', '/api/v1/auth/subscriptions?fields=authorId', true);
xhr.onreadystatechange = function () {
if (xhr.readyState === 4) {

Loading…
Cancel
Save