summaryrefslogtreecommitdiff
path: root/features/authentication.feature
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2017-09-11 14:55:14 +0200
committerAzul <azul@riseup.net>2017-09-11 14:55:14 +0200
commitef91e8fe1fb5c1cf8f2f84fd25ef2b115f0ec8c8 (patch)
treeb567a85624fa924a7ee962a07cad89987b804d6b /features/authentication.feature
parent35b710c968d6e71e4d4210dbc2e00abc6f14f513 (diff)
feat: allow unauthenticated access to list of configs
This should simplify client code significantly according to platform#8849
Diffstat (limited to 'features/authentication.feature')
-rw-r--r--features/authentication.feature4
1 files changed, 2 insertions, 2 deletions
diff --git a/features/authentication.feature b/features/authentication.feature
index 806e2b7..4dc6c78 100644
--- a/features/authentication.feature
+++ b/features/authentication.feature
@@ -13,12 +13,12 @@ Feature: Authentication
Given I authenticated
And I set headers:
| Authorization | Token token="MY_AUTH_TOKEN" |
- When I send a GET request to "/2/configs.json"
+ When I send a GET request to "/2/service"
Then the response status should be "200"
Scenario: Submitting an invalid token
Given I authenticated
And I set headers:
| Authorization | Token token="InvalidToken" |
- When I send a GET request to "/2/configs.json"
+ When I send a GET request to "/2/service"
Then the response status should be "401"