16 lines
496 B
Python
16 lines
496 B
Python
from typing import Dict
|
|
|
|
from szurubooru import rest, search
|
|
from szurubooru.func import auth, snapshots
|
|
|
|
_search_executor = search.Executor(search.configs.SnapshotSearchConfig())
|
|
|
|
|
|
@rest.routes.get("/snapshots/?")
|
|
def get_snapshots(
|
|
ctx: rest.Context, _params: Dict[str, str] = {}
|
|
) -> rest.Response:
|
|
auth.verify_privilege(ctx.user, "snapshots:list")
|
|
return _search_executor.execute_and_serialize(
|
|
ctx, lambda snapshot: snapshots.serialize_snapshot(snapshot, ctx.user)
|
|
)
|