Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

+page.ts
import type { PageLoad } from './$types';
import { redirect } from '@sveltejs/kit';
import { ui_server } from '../../helpers';

export const load: PageLoad = async ({ params }) => {
  redirect(302, `${ui_server}/${params.user}/${params.repo}/tree`);
};