Fork of Pleroma with site-specific changes and feature branches https://git.pleroma.social/pleroma/pleroma
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

20 líneas
416B

  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. )