Skip to content

Commit

Permalink
fix(admin/watched): clarify clip watching
Browse files Browse the repository at this point in the history
  • Loading branch information
Zibbp committed Dec 27, 2024
1 parent 53733f4 commit becdece
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/app/components/admin/watched/DrawerContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -322,8 +322,8 @@ const AdminWatchedChannelDrawerContent = ({ watchedChannel, mode, handleClose }:
<div>
<Title order={3}>Channel Clips</Title>
<Text>Archive past channel clips.</Text>
<Text size="xs" >
Check watched channel every <code>interval</code> days archiving the top <code>number</code> of clips. No restrictions (categories, age, title, regex, etc) are applied to this.
<Text size="xs">
This feature is meant to archive the most popular (view count) clips the past <code>interval</code> days. For example, if you set number of clips to 5 and interval to 7, the top 5 clips from the past 7 days will be archived. It will not run again until 7 days have passed. No restrictions (categories, age, title, regex, etc) are applied to this.
</Text>

<Checkbox
Expand All @@ -344,7 +344,7 @@ const AdminWatchedChannelDrawerContent = ({ watchedChannel, mode, handleClose }:

<NumberInput
label="Interval Days"
description="How often channel is checked for clips to archive (in days)."
description="How often channel is checked for clips to archive (in days). This also limits the clip search to the last interval days."
key={form.key('clips_interval_days')}
{...form.getInputProps('clips_interval_days')}
min={1}
Expand Down

0 comments on commit becdece

Please sign in to comment.