mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-13 02:41:08 +00:00
10 lines
259 B
Python
10 lines
259 B
Python
|
from .. import schemas
|
||
|
from ..decorators import identity_required
|
||
|
from .base import api
|
||
|
|
||
|
|
||
|
@api.get("/v1/accounts/verify_credentials", response=schemas.Account)
|
||
|
@identity_required
|
||
|
def verify_credentials(request):
|
||
|
return request.identity.to_mastodon_json()
|