mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-18 23:15:26 +02:00
29 lines
862 B
Go
29 lines
862 B
Go
package commondocumentation
|
|
|
|
import docvalues "config-lsp/doc-values"
|
|
|
|
var AdfsDocumentationAssignable = map[docvalues.EnumString]docvalues.DeprecatedValue{
|
|
docvalues.CreateEnumStringWithDoc(
|
|
"uid",
|
|
"Set the owner of the files in the filesystem (default: uid=0).",
|
|
): docvalues.UIDValue{
|
|
EnforceUsingExisting: true,
|
|
},
|
|
docvalues.CreateEnumStringWithDoc(
|
|
"gid",
|
|
"Set the group of the files in the filesystem (default: gid=0).",
|
|
): docvalues.GIDValue{
|
|
EnforceUsingExisting: true,
|
|
},
|
|
docvalues.CreateEnumStringWithDoc(
|
|
"ownmask",
|
|
"Set the permission mask for ADFS 'owner' permissions (default: 0700).",
|
|
): docvalues.StringValue{},
|
|
docvalues.CreateEnumStringWithDoc(
|
|
"othmask",
|
|
"Set the permission mask for ADFS 'other' permissions (default: 0077).",
|
|
): docvalues.StringValue{},
|
|
}
|
|
|
|
var AdfsDocumentationEnums = []docvalues.EnumString{}
|