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.
website/cypress/fixtures/guilds/get.ts

15 lines
333 B
TypeScript
Raw Normal View History

import type { Handler } from "../handler"
import { guildExample, guildExample2 } from "./guild"
export const getGuildsHandler: Handler = {
method: "GET",
url: "/guilds",
response: {
statusCode: 200,
body: [
{ ...guildExample, defaultChannelId: 1 },
{ ...guildExample2, defaultChannelId: 2 },
],
},
}