QueuesOverviewTab() — supabase Function Reference
Architecture documentation for the QueuesOverviewTab() function in OverviewTab.tsx from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/studio/components/interfaces/Integrations/Queues/OverviewTab.tsx lines 9–40
export const QueuesOverviewTab = () => {
const { ref } = useParams()
const { data: project } = useSelectedProjectQuery()
const { data: isExposed } = useQueuesExposePostgrestStatusQuery({
projectRef: project?.ref,
connectionString: project?.connectionString,
})
return (
<IntegrationOverviewTab
actions={
!isExposed ? (
<Admonition
type="default"
title="Queues can be managed via any Supabase client library or PostgREST endpoints"
>
<p>
You may choose to toggle the exposure of Queues through Data APIs via the queues
settings
</p>
<Button asChild type="default">
<Link href={`/project/${ref}/integrations/queues/settings`}>
Manage queues settings
</Link>
</Button>
</Admonition>
) : null
}
/>
)
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free