1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2026-04-26 21:04:16 +02:00

change 'group_list' to 'members'

This commit is contained in:
Kelly Brazil
2020-03-03 09:32:56 -08:00
parent 4aeaa9f42a
commit fb08b42dca
2 changed files with 21 additions and 21 deletions
+9 -9
View File
@@ -17,19 +17,19 @@ Examples:
"group_name": "nobody",
"password": "*",
"gid": -2,
"group_list": []
"members": []
},
{
"group_name": "nogroup",
"password": "*",
"gid": -1,
"group_list": []
"members": []
},
{
"group_name": "wheel",
"password": "*",
"gid": 0,
"group_list": [
"members": [
"root"
]
},
@@ -37,7 +37,7 @@ Examples:
"group_name": "certusers",
"password": "*",
"gid": 29,
"group_list": [
"members": [
"root",
"_jabber",
"_postfix",
@@ -55,7 +55,7 @@ Examples:
"group_name": "nobody",
"password": "*",
"gid": "-2",
"group_list": [
"members": [
""
]
},
@@ -63,7 +63,7 @@ Examples:
"group_name": "nogroup",
"password": "*",
"gid": "-1",
"group_list": [
"members": [
""
]
},
@@ -71,7 +71,7 @@ Examples:
"group_name": "wheel",
"password": "*",
"gid": "0",
"group_list": [
"members": [
"root"
]
},
@@ -79,7 +79,7 @@ Examples:
"group_name": "certusers",
"password": "*",
"gid": "29",
"group_list": [
"members": [
"root",
"_jabber",
"_postfix",
@@ -116,7 +116,7 @@ Returns:
"group_name": string,
"password": string,
"gid": integer,
"group_list": [
"members": [
string
]
}