diff --git a/fediseer/apis/v1/endorsements.py b/fediseer/apis/v1/endorsements.py index ec1450e..6e7a9f7 100644 --- a/fediseer/apis/v1/endorsements.py +++ b/fediseer/apis/v1/endorsements.py @@ -103,7 +103,7 @@ class Endorsements(Resource): db.session.commit() if not database.has_recent_endorsement(target_instance.id): activitypub_pm.pm_admins( - message=f"Your instance has just been endorsed by {instance.domain}", + 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, diff --git a/fediseer/apis/v1/guarantees.py b/fediseer/apis/v1/guarantees.py index f37cec5..681b7fc 100644 --- a/fediseer/apis/v1/guarantees.py +++ b/fediseer/apis/v1/guarantees.py @@ -105,7 +105,7 @@ class Guarantees(Resource): # db.session.add(new_endorsement) db.session.commit() activitypub_pm.pm_admins( - message=f"Congratulations! Your instance has just been guaranteed by {instance.domain}. \n\nThis is an automated PM by the [Fediseer](https://fediseer.com) service. Replies will not be read.\nPlease contact @db0@lemmy.dbzer0.com for further inquiries.", + message=f"Congratulations! Your instance has just been [guaranteed](https://fediseer.com/faq#what-is-a-guarantee) by {instance.domain}. \n\nThis is an automated PM by the [Fediseer](https://fediseer.com) service. Replies will not be read.\nPlease contact @db0@lemmy.dbzer0.com for further inquiries.", domain=target_instance.domain, software=target_instance.software, instance=target_instance, @@ -169,8 +169,8 @@ class Guarantees(Resource): db.session.add(rejection) db.session.commit() activitypub_pm.pm_admins( - message=f"Attention! You guarantor instance {instance.domain} has withdrawn their backing.\n\n" - "IMPORTANT: The instances you vouched for are still considered guaraneed but cannot guarantee or endorse others" + message=f"Attention! You guarantor instance {instance.domain} has withdrawn their [guarantee](https://fediseer.com/faq#what-is-a-guarantee).\n\n" + "IMPORTANT: The instances you vouched for are still considered guaranteed but cannot guarantee or endorse others" "If you find a new guarantor then your guarantees will be reactivated!.\n\n" "Note that if you do not find a guarantor within 7 days, all your guarantees and endorsements will be removed.", domain=target_instance.domain, diff --git a/fediseer/consts.py b/fediseer/consts.py index 3c5c9e9..9c39199 100644 --- a/fediseer/consts.py +++ b/fediseer/consts.py @@ -1,6 +1,6 @@ -FEDISEER_VERSION = "0.5.1" +FEDISEER_VERSION = "0.7.0" SUPPORTED_SOFTWARE = [ "lemmy", "mastodon", "friendica", -] \ No newline at end of file +]