DisallowAllAccessButton() — supabase Function Reference
Architecture documentation for the DisallowAllAccessButton() function in NetworkRestrictions.tsx from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/studio/components/interfaces/Settings/Database/NetworkRestrictions/NetworkRestrictions.tsx lines 61–77
const DisallowAllAccessButton = ({ disabled, onClick }: AccessButtonProps) => (
<ButtonTooltip
disabled={disabled}
type="default"
onClick={() => onClick(true)}
tooltip={{
content: {
side: 'bottom',
text: disabled
? 'You need additional permissions to update network restrictions'
: undefined,
},
}}
>
Restrict all access
</ButtonTooltip>
)
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free