diff options
| -rw-r--r-- | src/rabbit_authz_backend.erl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/rabbit_authz_backend.erl b/src/rabbit_authz_backend.erl index 0c97b2047c..495a79695d 100644 --- a/src/rabbit_authz_backend.erl +++ b/src/rabbit_authz_backend.erl @@ -28,13 +28,15 @@ %% check_resource_access/3. %% %% Possible responses: +%% {ok, Impl} %% {ok, Impl, Tags} -%% User authorisation succeeded, and here's the impl and extra tags fields. +%% User authorisation succeeded, and here's the impl and potential extra tags fields. %% {error, Error} %% Something went wrong. Log and die. %% {refused, Msg, Args} %% User authorisation failed. Log and die. -callback user_login_authorization(rabbit_types:username()) -> + {'ok', any()} | {'ok', any(), any()} | {'refused', string(), [any()]} | {'error', any()}. |
