show reason on endorsements

pull/26/head
db0 2023-09-17 22:10:59 +02:00
parent f8b4eeee51
commit 5b4fe4f442
1 changed files with 13 additions and 10 deletions

View File

@ -144,10 +144,13 @@ class Endorsements(Resource):
)
db.session.add(new_report)
db.session.commit()
if not database.has_recent_endorsement(target_instance.id):
# if not database.has_recent_endorsement(target_instance.id):
try:
message = f"Your instance has just been [endorsed](https://fediseer.com/faq#what-is-an-endorsement) by {instance.domain}."
if reason is not None:
message = f"Your instance has just been [endorsed](https://fediseer.com/faq#what-is-an-endorsement) by {instance.domain} with reason: {reason}"
activitypub_pm.pm_admins(
message=f"Your instance has just been [endorsed](https://fediseer.com/faq#what-is-an-endorsement) by {instance.domain}",
message=message,
domain=target_instance.domain,
software=target_instance.software,
instance=target_instance,