Skip to content

Commit 4d3d0b8

Browse files
committed
categorise apps for actions and add search
1 parent c0ac6d9 commit 4d3d0b8

File tree

18 files changed

+204
-94
lines changed

18 files changed

+204
-94
lines changed

packages/backend/src/apps/calculator/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ const app: IApp = {
1515
substepLabels: {
1616
settingsStepLabel: 'Set up calculator',
1717
},
18+
category: 'data',
1819
}
1920

2021
export default app

packages/backend/src/apps/custom-api/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ const app: IApp = {
1616
apiBaseUrl: '',
1717
primaryColor: '0059F7',
1818
actions,
19+
category: 'integrations',
1920
}
2021

2122
export default app

packages/backend/src/apps/delay/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ const app: IApp = {
1111
apiBaseUrl: '',
1212
primaryColor: '001F52',
1313
actions,
14+
category: 'logic',
1415
}
1516

1617
export default app

packages/backend/src/apps/formatter/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ const app: IApp = {
1616
substepLabels: {
1717
settingsStepLabel: 'Set up formatter',
1818
},
19+
category: 'data',
1920
}
2021

2122
export default app

packages/backend/src/apps/lettersg/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ const app: IApp = {
1717
auth,
1818
actions,
1919
dynamicData,
20+
category: 'integrations',
2021
}
2122

2223
export default app

packages/backend/src/apps/m365-excel/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ const app: IApp = {
3232
messageBody:
3333
'There is a cap on total disk space and Excel actions across all Plumber users. To prevent disruption to your workflow, contact us if you have large files or need more than 100 Excel actions per hour.\n\nRead [our guide](https://guide.plumber.gov.sg/user-guides/actions/m365-excel) for more information.',
3434
},
35+
category: 'data',
3536
}
3637

3738
export default app

packages/backend/src/apps/paysg/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ const app: IApp = {
1515
beforeRequest: [addAuthHeader],
1616
auth,
1717
actions,
18+
category: 'integrations',
1819
}
1920

2021
export default app

packages/backend/src/apps/postman-sms/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ const app: IApp = {
2121
actions,
2222
queue,
2323
isNewApp: true,
24+
category: 'communications',
2425
}
2526

2627
export default app

packages/backend/src/apps/postman/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ const app: IApp = {
1818
url: 'https://demo.arcade.software/VppMAbGKfFXFEsKxnKiw?embed&show_copy_link=true',
1919
title: 'Setting up Email by Postman',
2020
},
21+
category: 'communications',
2122
}
2223

2324
export default app

packages/backend/src/apps/slack/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ const app: IApp = {
1717
auth,
1818
actions,
1919
dynamicData,
20+
category: 'communications',
2021
}
2122

2223
export default app

0 commit comments

Comments
 (0)