We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46df57c commit 18bb136Copy full SHA for 18bb136
modules/config.xqm
@@ -71,13 +71,14 @@ declare function config:repo-descriptor() as element(repo:meta) {
71
};
72
73
(:~
74
- : Returns the user and group from the repo.xml descriptor.
+ : Returns the permissions information from the repo.xml descriptor.
75
:)
76
declare function config:repo-permissions() as map(*) {
77
config:repo-descriptor()/repo:permissions !
78
map {
79
"user": ./@user/string(),
80
- "group": ./@group/string()
+ "group": ./@group/string(),
81
+ "mode": ./@mode/string()
82
}
83
84
0 commit comments