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

28 lines
667 B
Python
Raw Normal View History

2021-11-11 20:31:28 +02:00
#!/usr/bin/env python3
2021-11-16 18:14:01 +02:00
"""Unassigned views"""
2021-11-11 20:31:28 +02:00
import subprocess
2021-11-16 18:14:01 +02:00
from flask_restful import Resource, reqparse
2021-11-11 20:31:28 +02:00
2021-11-18 09:25:33 +02: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
"""
2021-11-22 18:50:50 +02:00
return {"version": "1.1.0"}