feat: helper method to get thumbs by pid

v1.18.x
Julian Lam 4 years ago
parent 41379e27c8
commit cb7e4cda2a

@ -5,6 +5,8 @@ define('topicThumbs', ['api'], function (api) {
Thumbs.get = id => api.get(`/topics/${id}/thumbs`, {});
Thumbs.getByPid = pid => fetch(`${config.relative_path}/api/post/pid/${pid}`).then(res => res.json()).then(res => Thumbs.get(res.tid));
Thumbs.delete = (id, path) => api.del(`/topics/${id}/thumbs`, {
path: path,
});

Loading…
Cancel
Save