Skip to content

Commit 6279004

Browse files
Smarkerc-w
authored andcommitted
Add feedUrls param to create stream. (#43)
1 parent b65960c commit 6279004

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

project-fortis-interfaces/src/components/Admin/Streams/StreamConstants.js

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -580,6 +580,14 @@ const schema = {
580580
title: 'HTML Parameters',
581581
type: 'object',
582582
properties: {
583+
feedUrls: {
584+
title: 'HTML Feed Urls',
585+
type: 'array',
586+
items: {
587+
type: 'string',
588+
format: 'uri',
589+
},
590+
},
583591
maxDepth: {
584592
title: 'Max Depth',
585593
type: 'string',
@@ -595,7 +603,10 @@ const schema = {
595603
type: 'string',
596604
pattern: '\\d+'
597605
}
598-
}
606+
},
607+
required: [
608+
'feedUrls'
609+
]
599610
}
600611
},
601612
},
@@ -1042,6 +1053,11 @@ const uiSchema = {
10421053
consumerSecret: {
10431054
classNames: "settings secret"
10441055
},
1056+
feedUrls: {
1057+
items: {
1058+
"ui:placeholder": "http://"
1059+
}
1060+
},
10451061
instagramLocation: {
10461062
lat: {
10471063
"ui:placeholder": "42.37"

0 commit comments

Comments
 (0)