Skip to content
This repository has been archived by the owner on Dec 24, 2024. It is now read-only.

feat(admin/tasks): add task to start live stream ext vod id #24

Merged
merged 1 commit into from
Jan 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions src/pages/admin/tasks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,23 @@ const AdminTasksPage = () => {
</ActionIcon>
</Tooltip>
</Grid.Col>
<Grid.Col span={10}>
<div>
<span>
<Text>Update Live Stream Archives with VOD IDs</Text>
<Text size="xs">
Attempt to update past live stream archives with their corresponding vod ID (automatically does this after live archive finishes).
</Text>
</span>
</div>
</Grid.Col>
<Grid.Col span={2}>
<Tooltip label="Start Workflow">
<ActionIcon variant="filled" size="lg" color="green" aria-label="Settings" loading={workflowLoading} onClick={() => startWorkflow.mutate("UpdateTwitchLiveStreamArchivesWithVodIds")}>
<IconPlayerPlay stroke={2} />
</ActionIcon>
</Tooltip>
</Grid.Col>
</Grid>
</Container>
</div>
Expand Down