Skip to content

Commit

Permalink
Move n8n and Zapier to automation category
Browse files Browse the repository at this point in the history
  • Loading branch information
hariombalhara committed Sep 13, 2022
1 parent 6a3fd8d commit fa9a8b5
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions packages/app-store/n8n/config.json
Expand Up @@ -2,12 +2,12 @@
"/*": "Don't modify slug - If required, do it using cli edit command",
"name": "n8n",
"slug": "n8n",
"type": "n8n_other",
"type": "n8n_automation",
"imageSrc": "/api/app-store/n8n/icon.svg",
"logo": "/api/app-store/n8n/icon.svg",
"url": "https://cal.com/apps/n8n",
"variant": "other",
"categories": ["other"],
"categories": ["automation"],
"publisher": "Cal.com, Inc.",
"email": "help@cal.com",
"description": "Automate without limits. The workflow automation platform that doesn't box you in, that you never outgrow",
Expand Down
4 changes: 2 additions & 2 deletions packages/app-store/zapier/_metadata.ts
Expand Up @@ -6,7 +6,7 @@ export const metadata = {
name: "Zapier",
description: _package.description,
installed: true,
category: "other",
category: "automation",
imageSrc: "/api/app-store/zapier/icon.svg",
logo: "/api/app-store/zapier/icon.svg",
publisher: "Cal.com",
Expand All @@ -15,7 +15,7 @@ export const metadata = {
slug: "zapier",
title: "Zapier",
trending: true,
type: "zapier_other",
type: "zapier_automation",
url: "https://cal.com/apps/zapier",
variant: "other",
verified: true,
Expand Down
4 changes: 2 additions & 2 deletions packages/prisma/seed-app-store.config.json
Expand Up @@ -56,8 +56,8 @@
},
{
"dirName": "n8n",
"categories": ["other"],
"categories": ["automation"],
"slug": "n8n",
"type": "n8n_other"
"type": "n8n_automation"
}
]
2 changes: 1 addition & 1 deletion packages/prisma/seed-app-store.ts
Expand Up @@ -259,7 +259,7 @@ export default async function main() {
}

if (process.env.ZAPIER_INVITE_LINK) {
await createApp("zapier", "zapier", ["other"], "zapier_other", {
await createApp("zapier", "zapier", ["automation"], "zapier_automation", {
invite_link: process.env.ZAPIER_INVITE_LINK,
});
}
Expand Down
1 change: 1 addition & 0 deletions packages/types/App.d.ts
Expand Up @@ -53,6 +53,7 @@ export interface App {
| `${string}_video`
| `${string}_web3`
| `${string}_other`
| `${string}_automation`
| `${string}_other_calendar`;
/** The display name for the app, TODO settle between this or name */
title?: string;
Expand Down

0 comments on commit fa9a8b5

Please sign in to comment.