From ef91e8fe1fb5c1cf8f2f84fd25ef2b115f0ec8c8 Mon Sep 17 00:00:00 2001 From: Azul Date: Mon, 11 Sep 2017 14:55:14 +0200 Subject: feat: allow unauthenticated access to list of configs This should simplify client code significantly according to platform#8849 --- features/authentication.feature | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'features/authentication.feature') 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" -- cgit v1.2.3