queue creation logic
This commit is contained in:
@ -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({
|
||||
|
||||
Reference in New Issue
Block a user