2019-11-18 18:38:56 +01:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-03 23:44:49 +01:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2019-11-18 18:38:56 +01:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
import EctoEnum
|
|
|
|
|
2020-03-31 08:21:42 +02:00
|
|
|
defenum(Pleroma.UserRelationship.Type,
|
2019-11-20 13:46:11 +01:00
|
|
|
block: 1,
|
|
|
|
mute: 2,
|
|
|
|
reblog_mute: 3,
|
|
|
|
notification_mute: 4,
|
|
|
|
inverse_subscription: 5
|
|
|
|
)
|
2020-03-28 16:49:03 +01:00
|
|
|
|
2020-03-31 08:21:42 +02:00
|
|
|
defenum(Pleroma.FollowingRelationship.State,
|
2020-03-28 16:49:03 +01:00
|
|
|
follow_pending: 1,
|
|
|
|
follow_accept: 2,
|
|
|
|
follow_reject: 3
|
|
|
|
)
|