Eugen Rochko 6373a84259 [Glitch] Add endorsed accounts to profiles in web UI
Port 79013c730d8c241d54823a1b5860f403de2b9a1c to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
2025-05-03 18:19:31 +02:00

8 lines
233 B
TypeScript

import { createAction } from '@reduxjs/toolkit';
import type { ApiAccountJSON } from 'flavours/glitch/api_types/accounts';
export const importAccounts = createAction<{ accounts: ApiAccountJSON[] }>(
'accounts/importAccounts',
);