From 927fa4b11f692174d6296aa096d7a74bacdeea8b Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Tue, 26 Jul 2022 14:46:15 +0200 Subject: Add rejected state to follows Prevent reprocessing already rejected follows --- shared/models/actors/follow.model.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'shared/models') diff --git a/shared/models/actors/follow.model.ts b/shared/models/actors/follow.model.ts index 7de638cba..244d6d97e 100644 --- a/shared/models/actors/follow.model.ts +++ b/shared/models/actors/follow.model.ts @@ -1,6 +1,6 @@ import { Actor } from './actor.model' -export type FollowState = 'pending' | 'accepted' +export type FollowState = 'pending' | 'accepted' | 'rejected' export interface ActorFollow { id: number -- cgit v1.2.3