mobilizon.chapril.org-mobil.../js/src/types/actor/follower.model.ts
Thomas Citharel 4144e9ffd0
Introduce group basic federation, event new page and notifications
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2020-06-03 16:01:26 +02:00

9 lines
160 B
TypeScript

import { IActor } from "@/types/actor/actor.model";
export interface IFollower {
id?: string;
actor: IActor;
targetActor: IActor;
approved: boolean;
}