1
1
Fork 0
mirror of https://github.com/jointakahe/takahe.git synced 2025-03-23 23:42:41 +00:00
takahe/api/views/suggestions.py

17 lines
348 B
Python
Raw Normal View History

from django.http import HttpRequest
from hatchway import api_view
from api import schemas
from api.decorators import scope_required
@scope_required("read")
@api_view.get
def suggested_users(
request: HttpRequest,
limit: int = 10,
offset: int | None = None,
) -> list[schemas.Account]:
# We don't implement this yet
return []