diff options
author | Munyoki Kilyungi | 2024-02-28 17:55:38 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2024-03-04 11:57:58 +0300 |
commit | bf700400e56b64e536d9535f86f0c8add31b1c48 (patch) | |
tree | 3fcff0d281c8962779a04a6f27c2ff3302cac0c3 /gn_auth/auth/authorisation | |
parent | b7129cf53bb5250c734540d87b88780ba5fbc981 (diff) | |
download | gn-auth-bf700400e56b64e536d9535f86f0c8add31b1c48.tar.gz |
Fix minor typo.
* gn_auth/auth/authorisation/data/views.py (authorisation): Fix typo.
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'gn_auth/auth/authorisation')
-rw-r--r-- | gn_auth/auth/authorisation/data/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gn_auth/auth/authorisation/data/views.py b/gn_auth/auth/authorisation/data/views.py index 6f52d15..05257a7 100644 --- a/gn_auth/auth/authorisation/data/views.py +++ b/gn_auth/auth/authorisation/data/views.py @@ -76,7 +76,7 @@ def list_species() -> Response: @data.route("/authorisation", methods=["POST"]) @require_json def authorisation() -> Response: - """Retrive the authorisation level for datasets/traits for the user.""" + """Retrieve the authorisation level for datasets/traits for the user.""" # Access endpoint with something like: # curl -X POST http://127.0.0.1:8080/api/oauth2/data/authorisation \ # -H "Content-Type: application/json" \ |