diff options
| author | Frederick Muriuki Muriithi | 2026-05-21 10:32:52 -0500 |
|---|---|---|
| committer | Frederick Muriuki Muriithi | 2026-05-21 12:40:40 -0500 |
| commit | daf8d4ec95bb5d4a7e0c108c023f64d6954d70df (patch) | |
| tree | 0e6c4b964ab8b141a60331be9715646016dc4ddb /gn_auth/auth/authorisation | |
| parent | 585ecc195561d4813eab95a2122c9397e2a122c6 (diff) | |
| download | gn-auth-daf8d4ec95bb5d4a7e0c108c023f64d6954d70df.tar.gz | |
Deprecate functions which duplicate those in gn-libs.
The `gn_auth.auth.authorisation.resources.checks.can_[edit/delete]` functions duplicate the utility provided by similar named functions in the `gn_libs.privileges.resources` package. These ones are, thus, deprecated in favour of the gn-libs ones.
Diffstat (limited to 'gn_auth/auth/authorisation')
| -rw-r--r-- | gn_auth/auth/authorisation/resources/checks.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gn_auth/auth/authorisation/resources/checks.py b/gn_auth/auth/authorisation/resources/checks.py index ca311ef..252df2f 100644 --- a/gn_auth/auth/authorisation/resources/checks.py +++ b/gn_auth/auth/authorisation/resources/checks.py @@ -135,6 +135,11 @@ def can_delete( resource_id: uuid.UUID ) -> bool: """Check whether user is allowed delete a resource and/or its data.""" + warnings.warn( + (f"Function '{__name__}.can_delete' is deprecated. " + "Use `gn_libs.privileges.resources.can_delete` instead."), + category=DeprecationWarning, + stacklevel=2) return ( authorised_for_spec(# resource-level delete access conn, @@ -155,6 +160,11 @@ def can_edit( resource_id: uuid.UUID ) -> bool: """Check whether user is allowed edit a resource and/or its data.""" + warnings.warn( + (f"Function '{__name__}.can_edit' is deprecated. " + "Use `gn_libs.privileges.resources.can_edit` instead."), + category=DeprecationWarning, + stacklevel=2) return ( authorised_for_spec( # resource-level edit access: user has edit access to his resource. |
