From e5870a639ae8e16cf4236a38a672d6c55777d3eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Y=C3=BBki=20Vachot?= Date: Fri, 10 Dec 2021 16:05:57 +0100 Subject: [PATCH] Update: Add baseChannelUrl --- app-backend/config/host.config.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app-backend/config/host.config.js b/app-backend/config/host.config.js index 5016ee1..7a69d2e 100644 --- a/app-backend/config/host.config.js +++ b/app-backend/config/host.config.js @@ -3,12 +3,14 @@ module.exports = { name: "Youtube", shortname: "yt", baseAPIUrl: 'https://youtube.googleapis.com/youtube/v3', + baseChannelUrl: 'https://www.youtube.com/channel/', YOUTUBE_API_KEY: process.env.YOUTUBE_API_KEY }, dailymotion: { name: "Dailymotion", shortname: "dm", - baseAPIUrl: 'https://api.dailymotion.com/', + baseAPIUrl: 'https://api.dailymotion.com', + baseChannelUrl: 'https://www.dailymotion.com/', DAILYMOTION_API_KEY: process.env.DAILYMOTION_API_KEY } };