Fork of Pleroma with site-specific changes and feature branches https://git.pleroma.social/pleroma/pleroma
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
524B

  1. # Pleroma: A lightweight social networking server
  2. # Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
  3. # SPDX-License-Identifier: AGPL-3.0-only
  4. import EctoEnum
  5. defenum(Pleroma.UserRelationship.Type,
  6. block: 1,
  7. mute: 2,
  8. reblog_mute: 3,
  9. notification_mute: 4,
  10. inverse_subscription: 5
  11. )
  12. defenum(Pleroma.FollowingRelationship.State,
  13. follow_pending: 1,
  14. follow_accept: 2,
  15. follow_reject: 3
  16. )
  17. defenum(Pleroma.DataMigration.State,
  18. pending: 1,
  19. running: 2,
  20. complete: 3,
  21. failed: 4,
  22. manual: 5
  23. )