From 2d186afa9405f2ce68fa16a19ddff0d2836e581c Mon Sep 17 00:00:00 2001 From: EntireTwix Date: Tue, 6 Jul 2021 02:13:36 -0700 Subject: [PATCH] :books::zap: simplified Admin Auth description --- docs/connected_services/how_to/endpoints.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/connected_services/how_to/endpoints.md b/docs/connected_services/how_to/endpoints.md index 744980a..6d1a3df 100644 --- a/docs/connected_services/how_to/endpoints.md +++ b/docs/connected_services/how_to/endpoints.md @@ -6,10 +6,9 @@ `Jreq` - Json Request, requires `application/json` as `content-type`, failing to do so results in error `406` -`A` - Admin, requires [basic auth](https://en.wikipedia.org/wiki/Basic_access_authentication) in the header `Authorization`. This credential must be both a valid user and have a username of that of the admin account, failing to do so results in error `401` - `U` - User, requires [basic auth](https://en.wikipedia.org/wiki/Basic_access_authentication) in the header `Authorization`. This credential must be a valid user, failing to do so results in error `401` +`A` - Admin, same as `U` but in addition requires username supplied be equal to the admin account username :heavy_check_mark: :heavy_multiplication_x: