removed deprecated endpoints

- '/client-token' moved to '/-/client-token'
- '/status' moved to '/-/health' and '/-/config'

see README.md for more information
This commit is contained in:
Oscar Krause
2023-01-02 19:15:48 +01:00
parent 2e950ca6f4
commit 4fb6243330
3 changed files with 1 additions and 25 deletions

View File

@@ -44,11 +44,6 @@ def test_index():
assert response.status_code == 200
def test_status():
response = client.get('/status')
assert response.status_code == 200
assert response.json()['status'] == 'up'
def test_health():
response = client.get('/-/health')
@@ -76,11 +71,6 @@ def test_client_token():
assert response.status_code == 200
def test_client_token_deprecated():
response = client.get('/client-token')
assert response.status_code == 200
def test_origins():
pass