Fix requred fields, create chan members type

This commit is contained in:
Denis Arh
2019-04-27 10:43:26 +02:00
parent 7cbfc705ae
commit eae4643274
5 changed files with 10 additions and 8 deletions
+2 -2
View File
@@ -163,7 +163,7 @@
{
"type": "string",
"name": "name",
"required": true,
"required": false,
"title": "Name of Channel"
},
{
@@ -179,7 +179,7 @@
"title": "Channel type"
},
{
"type": "[]string",
"type": "[]uint64",
"name": "members",
"required": false,
"title": "Initial members of the channel"
+2 -2
View File
@@ -36,7 +36,7 @@
"post": [
{
"name": "name",
"required": true,
"required": false,
"title": "Name of Channel",
"type": "string"
},
@@ -56,7 +56,7 @@
"name": "members",
"required": false,
"title": "Initial members of the channel",
"type": "[]string"
"type": "[]uint64"
}
]
}