selfprivacy-rest-api/selfprivacy_api/resources/common.py

27 lines
639 B
Python
Raw Normal View History

2021-11-11 18:31:28 +00:00
#!/usr/bin/env python3
2021-11-16 16:14:01 +00:00
"""Unassigned views"""
2022-02-16 12:50:12 +00:00
from flask_restful import Resource
2021-11-11 18:31:28 +00:00
2021-11-18 07:25:33 +00:00
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": "1.2.5"}