mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 13:47:37 +03:00
log matching permission
This commit is contained in:
parent
02019e73e6
commit
ac5e33c723
1 changed files with 4 additions and 3 deletions
|
@ -75,10 +75,11 @@ class Rights(rights.BaseRights):
|
||||||
raise RuntimeError("Error in section %r of rights file %r: "
|
raise RuntimeError("Error in section %r of rights file %r: "
|
||||||
"%s" % (section, self._filename, e)) from e
|
"%s" % (section, self._filename, e)) from e
|
||||||
if user_match and collection_match:
|
if user_match and collection_match:
|
||||||
logger.debug("Rule %r:%r matches %r:%r from section %r",
|
permission = rights_config.get(section, "permissions")
|
||||||
|
logger.debug("Rule %r:%r matches %r:%r from section %r permission %r",
|
||||||
user, sane_path, user_pattern,
|
user, sane_path, user_pattern,
|
||||||
collection_pattern, section)
|
collection_pattern, section, permission)
|
||||||
return rights_config.get(section, "permissions")
|
return permission
|
||||||
logger.debug("Rule %r:%r doesn't match %r:%r from section %r",
|
logger.debug("Rule %r:%r doesn't match %r:%r from section %r",
|
||||||
user, sane_path, user_pattern, collection_pattern,
|
user, sane_path, user_pattern, collection_pattern,
|
||||||
section)
|
section)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue