Skip to content

Commit 50208fc

Browse files
author
Ihar
committed
feat: base sent event to final block[5018]
1 parent af83621 commit 50208fc

File tree

3 files changed

+321
-100
lines changed

3 files changed

+321
-100
lines changed

guardian-service/src/policy-engine/block-about.ts

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1269,7 +1269,8 @@ export const BlockAbout = {
12691269
'children': 'None',
12701270
'control': 'Server',
12711271
'input': [
1272-
'RunEvent'
1272+
'RunEvent',
1273+
'TimerEvent'
12731274
],
12741275
'output': [
12751276
'RunEvent'
@@ -1566,6 +1567,38 @@ export const BlockAbout = {
15661567
}
15671568
]
15681569
},
1570+
'globalTopicReaderBlock': {
1571+
'label': 'Global Notifications',
1572+
'title': `Add 'Global Notifications' Block`,
1573+
'post': false,
1574+
'get': true,
1575+
'children': 'Special',
1576+
'control': 'Server',
1577+
'input': [
1578+
'TimerEvent'
1579+
],
1580+
'output': [
1581+
'RunEvent',
1582+
'RefreshEvent',
1583+
'ErrorEvent',
1584+
'ReleaseEvent'
1585+
],
1586+
'defaultEvent': true,
1587+
'properties': [
1588+
{
1589+
'name': 'topics',
1590+
'label': 'Global topics',
1591+
'title': 'Global topics (list or JSON array)',
1592+
'type': 'Input'
1593+
},
1594+
{
1595+
'name': 'schema',
1596+
'label': 'Schema',
1597+
'title': 'Expected schema',
1598+
'type': 'Schemas'
1599+
}
1600+
]
1601+
},
15691602
}
15701603

15711604
/**

0 commit comments

Comments
 (0)