diff options
author | Andrew Godwin | 2022-12-17 12:07:13 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-12-17 12:07:13 -0700 |
commit | 5bbcc0f6c3bef33e31d6d55c3a171245428434de (patch) | |
tree | 6a8e4416e479f9dac7387cc67ac42d4d453296a7 | |
parent | 62f2b867b9dbdfde6be79b729515711c5c2cd877 (diff) | |
download | takahe-5bbcc0f6c3bef33e31d6d55c3a171245428434de.tar.gz takahe-5bbcc0f6c3bef33e31d6d55c3a171245428434de.tar.bz2 takahe-5bbcc0f6c3bef33e31d6d55c3a171245428434de.zip |
Add AP output to emoji admin
-rw-r--r-- | activities/admin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activities/admin.py b/activities/admin.py index b5fb898..ba8858b 100644 --- a/activities/admin.py +++ b/activities/admin.py @@ -66,7 +66,7 @@ class EmojiAdmin(admin.ModelAdmin): list_filter = ("local", "public", "state") search_fields = ("shortcode",) - readonly_fields = ("preview", "created", "updated") + readonly_fields = ["preview", "created", "updated", "to_ap_tag"] actions = ["force_execution", "approve_emoji", "reject_emoji"] |