This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.

15 lines
355 B
TypeScript
Raw Normal View History

2022-08-31 20:44:33 +01:00
import type { Handler } from '../../handler'
import { channelExample, channelExample2 } from '../channel'
export const deleteChannelWithChannelIdHandler: Handler = {
method: 'DELETE',
url: `/channels/${channelExample.id}`,
response: {
statusCode: 200,
body: {
...channelExample,
defaultChannelId: channelExample2.id
}
}
}