queue creation logic

This commit is contained in:
2024-04-13 12:59:32 +03:00
parent 6d7f2d7323
commit 17f94bf7bb
11 changed files with 169 additions and 45 deletions

View File

@ -7,6 +7,12 @@ export type CreateQueueRequest = {
description: string | null;
};
export type Queue = {
id: string;
name: string;
description: string | null;
};
export const QueueApi = createApi({
reducerPath: "QueueApi",
baseQuery: fetchBaseQuery({