2019-11-18 20:38:56 +03:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 07:49:20 +01:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2019-11-18 20:38:56 +03:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
import EctoEnum
|
|
|
|
|
2020-03-31 09:21:42 +03:00
|
|
|
defenum(Pleroma.UserRelationship.Type,
|
2019-11-20 15:46:11 +03:00
|
|
|
block: 1,
|
|
|
|
mute: 2,
|
|
|
|
reblog_mute: 3,
|
|
|
|
notification_mute: 4,
|
2021-11-26 20:19:29 -06:00
|
|
|
inverse_subscription: 5,
|
|
|
|
suggestion_dismiss: 6
|
2019-11-20 15:46:11 +03:00
|
|
|
)
|
2020-03-28 18:49:03 +03:00
|
|
|
|
2020-03-31 09:21:42 +03:00
|
|
|
defenum(Pleroma.FollowingRelationship.State,
|
2020-03-28 18:49:03 +03:00
|
|
|
follow_pending: 1,
|
|
|
|
follow_accept: 2,
|
|
|
|
follow_reject: 3
|
|
|
|
)
|
2021-01-13 22:07:38 +03:00
|
|
|
|
|
|
|
defenum(Pleroma.DataMigration.State,
|
|
|
|
pending: 1,
|
|
|
|
running: 2,
|
|
|
|
complete: 3,
|
|
|
|
failed: 4,
|
|
|
|
manual: 5
|
|
|
|
)
|