16 lines
520 B
JavaScript
16 lines
520 B
JavaScript
import Request from 'utils/request';
|
|
import request from '../utils/request';
|
|
|
|
export function getChannelData (name, id) {
|
|
console.log('getting channel data for channel:', name, id);
|
|
if (!id) id = 'none';
|
|
const url = `/api/channel/data/${name}/${id}`;
|
|
return request(url);
|
|
};
|
|
|
|
export function getChannelClaims (name, longId, page) {
|
|
console.log('getting channel claims for channel:', name, longId);
|
|
if (!page) page = 1;
|
|
const url = `/api/channel/claims/${name}/${longId}/${page}`;
|
|
return Request(url);
|
|
};
|