[Glitch] Refactor <DomainBlocks> to TypeScript

Port 2c70c28bbb to glitch-soc

Co-authored-by: Claire <claire.github-309c@sitedethib.com>
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
Eugen Rochko
2025-04-02 14:31:39 +02:00
committed by Claire
parent fafd384311
commit 3fcbad3e48
8 changed files with 144 additions and 233 deletions

View File

@@ -0,0 +1,13 @@
import api, { getLinks } from 'flavours/glitch/api';
export const apiGetDomainBlocks = async (url?: string) => {
const response = await api().request<string[]>({
method: 'GET',
url: url ?? '/api/v1/domain_blocks',
});
return {
domains: response.data,
links: getLinks(response),
};
};