mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-25 16:51:00 +00:00
parent
842b458395
commit
68d59b399e
2 changed files with 8 additions and 2 deletions
|
@ -75,7 +75,10 @@ class Individual(TemplateView):
|
||||||
# If this not a local post, redirect to its canonical URI
|
# If this not a local post, redirect to its canonical URI
|
||||||
if not self.post_obj.local:
|
if not self.post_obj.local:
|
||||||
return redirect(self.post_obj.object_uri)
|
return redirect(self.post_obj.object_uri)
|
||||||
return JsonResponse(canonicalise(self.post_obj.to_ap(), include_security=True))
|
return JsonResponse(
|
||||||
|
canonicalise(self.post_obj.to_ap(), include_security=True),
|
||||||
|
content_type="application/activity+json",
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
@method_decorator(identity_required, name="dispatch")
|
@method_decorator(identity_required, name="dispatch")
|
||||||
|
|
|
@ -55,7 +55,10 @@ class ViewIdentity(ListView):
|
||||||
# If this not a local actor, redirect to their canonical URI
|
# If this not a local actor, redirect to their canonical URI
|
||||||
if not identity.local:
|
if not identity.local:
|
||||||
return redirect(identity.actor_uri)
|
return redirect(identity.actor_uri)
|
||||||
return JsonResponse(canonicalise(identity.to_ap(), include_security=True))
|
return JsonResponse(
|
||||||
|
canonicalise(identity.to_ap(), include_security=True),
|
||||||
|
content_type="application/activity+json",
|
||||||
|
)
|
||||||
|
|
||||||
def get_queryset(self):
|
def get_queryset(self):
|
||||||
return (
|
return (
|
||||||
|
|
Loading…
Reference in a new issue