Make [Twitch] a social badge (#6183)

This commit is contained in:
Pierre-Yves B
2021-02-14 19:41:02 +00:00
committed by GitHub
parent bf8c86fafc
commit 2967c6793b

View File

@@ -8,7 +8,7 @@ const helixSchema = Joi.object({
})
module.exports = class TwitchStatus extends TwitchBase {
static category = 'activity'
static category = 'social'
static route = {
base: 'twitch/status',
@@ -21,15 +21,18 @@ module.exports = class TwitchStatus extends TwitchBase {
namedParams: {
user: 'andyonthewings',
},
queryParams: { style: 'social' },
staticPreview: {
message: 'live',
color: 'red',
style: 'social',
},
},
]
static defaultBadgeData = {
label: 'twitch',
namedLogo: 'twitch',
}
static render({ user, isLive }) {