add getChannelId(ChannelName) inside peertubeRequester

This commit is contained in:
amaury.joly 2021-07-30 17:15:37 +02:00
parent 6dadf326ac
commit 4f18003fb4

View File

@ -105,6 +105,18 @@ class PeerTubeRequester {
} }
} }
} }
async getChannelId(channelName: string): Promise<number> {
const response = await fetch(
new URL(`/api/v1/videos-channels/${channelName}`, this.domainName),
{
method: "gett"
}
);
const { id } = await response.json();
return id;
}
} }
export { PeerTubeRequester }; export { PeerTubeRequester };