mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-12-15 00:38:27 +00:00
[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:
13
app/javascript/flavours/glitch/api/domain_blocks.ts
Normal file
13
app/javascript/flavours/glitch/api/domain_blocks.ts
Normal 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),
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user