show reason on endorsements
parent
f8b4eeee51
commit
5b4fe4f442
|
@ -144,16 +144,19 @@ class Endorsements(Resource):
|
|||
)
|
||||
db.session.add(new_report)
|
||||
db.session.commit()
|
||||
if not database.has_recent_endorsement(target_instance.id):
|
||||
try:
|
||||
activitypub_pm.pm_admins(
|
||||
message=f"Your instance has just been [endorsed](https://fediseer.com/faq#what-is-an-endorsement) by {instance.domain}",
|
||||
domain=target_instance.domain,
|
||||
software=target_instance.software,
|
||||
instance=target_instance,
|
||||
)
|
||||
except:
|
||||
pass
|
||||
# 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=message,
|
||||
domain=target_instance.domain,
|
||||
software=target_instance.software,
|
||||
instance=target_instance,
|
||||
)
|
||||
except:
|
||||
pass
|
||||
logger.info(f"{instance.domain} Endorsed {domain}")
|
||||
return {"message":'Changed'}, 200
|
||||
|
||||
|
|
Loading…
Reference in New Issue