This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
takahe/api/views/emoji.py

11 lines
328 B
Python
Raw Normal View History

2022-12-16 00:50:15 +01:00
from activities.models import Emoji
from api.decorators import identity_required
from api.schemas import CustomEmoji
from api.views.base import api_router
@api_router.get("/v1/custom_emojis", response=list[CustomEmoji])
@identity_required
def emojis(request):
return [e.to_mastodon_json() for e in Emoji.objects.usable()]