diff options
| author | Simon MacMullen <simon@rabbitmq.com> | 2014-11-14 14:16:39 +0000 |
|---|---|---|
| committer | Simon MacMullen <simon@rabbitmq.com> | 2014-11-14 14:16:39 +0000 |
| commit | feb6d85ccb7d18e9762680e69a3b94c0439ebc9e (patch) | |
| tree | adfd795b14087b1dc2ee7ecb1e42b73f40400f94 /include | |
| parent | 17dc4acde6bd15f3943cf69729964190a157e279 (diff) | |
| download | rabbitmq-server-git-feb6d85ccb7d18e9762680e69a3b94c0439ebc9e.tar.gz | |
Tweak the APIs again, so that authz plugins aren't expected to create a #auth_user record in the first place, just whatever impl they want. Which necessitates seperate login functions for authz and authn, and if we're going to do that we might as well split the behaviours so that we have the possibility of making an authz-only plugin.
Diffstat (limited to 'include')
| -rw-r--r-- | include/rabbit.hrl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rabbit.hrl b/include/rabbit.hrl index 86c30fc581..9cbd978e42 100644 --- a/include/rabbit.hrl +++ b/include/rabbit.hrl @@ -17,7 +17,7 @@ %% Passed around most places -record(user, {username, tags, - authz_backends}). %% List of {Module, AuthUser} pairs + authz_backends}). %% List of {Module, AuthUserImpl} pairs %% Passed to auth backends -record(auth_user, {username, |
