2019-11-18 10:38:56 -07:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-03 15:44:49 -07:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2019-11-18 10:38:56 -07:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
import EctoEnum
|
|
|
|
|
2019-11-20 05:46:11 -07:00
|
|
|
defenum(UserRelationshipTypeEnum,
|
|
|
|
block: 1,
|
|
|
|
mute: 2,
|
|
|
|
reblog_mute: 3,
|
|
|
|
notification_mute: 4,
|
|
|
|
inverse_subscription: 5
|
|
|
|
)
|
2020-03-28 09:49:03 -06:00
|
|
|
|
|
|
|
defenum(FollowingRelationshipStateEnum,
|
|
|
|
follow_pending: 1,
|
|
|
|
follow_accept: 2,
|
|
|
|
follow_reject: 3
|
|
|
|
)
|