aboutsummaryrefslogtreecommitdiff
path: root/lib/pleroma/ecto_enums.ex
diff options
context:
space:
mode:
Diffstat (limited to 'lib/pleroma/ecto_enums.ex')
-rw-r--r--lib/pleroma/ecto_enums.ex6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/pleroma/ecto_enums.ex b/lib/pleroma/ecto_enums.ex
index d9b601223..b98ac4ba1 100644
--- a/lib/pleroma/ecto_enums.ex
+++ b/lib/pleroma/ecto_enums.ex
@@ -11,3 +11,9 @@ defenum(UserRelationshipTypeEnum,
notification_mute: 4,
inverse_subscription: 5
)
+
+defenum(FollowingRelationshipStateEnum,
+ follow_pending: 1,
+ follow_accept: 2,
+ follow_reject: 3
+)