mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-10-31 17:17:17 +00:00
28 lines
721 B
Python
28 lines
721 B
Python
#!/usr/bin/env python3
|
|
"""Unassigned views"""
|
|
from flask_restful import Resource
|
|
from selfprivacy_api.graphql.queries.api_queries import get_api_version
|
|
|
|
|
|
class ApiVersion(Resource):
|
|
"""SelfPrivacy API version"""
|
|
|
|
def get(self):
|
|
"""Get API version
|
|
---
|
|
tags:
|
|
- System
|
|
responses:
|
|
200:
|
|
description: API version
|
|
schema:
|
|
type: object
|
|
properties:
|
|
version:
|
|
type: string
|
|
description: API version
|
|
401:
|
|
description: Unauthorized
|
|
"""
|
|
return {"version": get_api_version()}
|