From 8434ceef8d510e74c0d50be713908b4852b0b826 Mon Sep 17 00:00:00 2001 From: 2022H1030026G Date: Fri, 14 Apr 2023 11:40:27 +0530 Subject: [PATCH] chore: added new subcategory Podcast (#427) * Added Podcast/openSourceStories Signed-off-by: MadhuMPandurangi * Removed smile text in the description Signed-off-by: MadhuMPandurangi * added new line at the end of the file Signed-off-by: MadhuMPandurangi --------- Signed-off-by: MadhuMPandurangi --- database/Other/podcasts.json | 9 +++++++++ database/data.ts | 1 + database/index.ts | 1 + 3 files changed, 11 insertions(+) create mode 100644 database/Other/podcasts.json diff --git a/database/Other/podcasts.json b/database/Other/podcasts.json new file mode 100644 index 000000000..2c84ac238 --- /dev/null +++ b/database/Other/podcasts.json @@ -0,0 +1,9 @@ +[ + { + "name": "Open Source Stories", + "description": "Founded by Amanda Casari and Julia Ferraioli, Open Source Stories is a podcast where individuals record their experiences about being in the open source community. In contrast to other podcasts, these stories are saved in the StoryCorps archive at the United States Congress! So what are you waiting for? Share your story!", + "url": "https://www.opensourcestories.org/", + "category": "other", + "subcategory": "podcasts" + } +] diff --git a/database/data.ts b/database/data.ts index 852a230ff..2403acde0 100644 --- a/database/data.ts +++ b/database/data.ts @@ -65,6 +65,7 @@ export const sidebarData: ISidebar[] = [ subcategory: [ { name: 'Github', url: '/github' }, { name: 'Dev Tools', url: '/devtools' }, + { name: 'Podcasts', url: '/podcasts' }, ], }, ] diff --git a/database/index.ts b/database/index.ts index ba93106e9..c3a484c24 100644 --- a/database/index.ts +++ b/database/index.ts @@ -30,6 +30,7 @@ export { default as youtubTesting } from "./youtube/testing.json"; // other export { default as github } from "./Other/Github.json"; export { default as devtools } from "./Other/devtools.json"; +export { default as podcasts } from "./Other/podcasts.json"; //languages export { default as javascript } from "./languages/javascript.json"; export { default as python } from "./languages/python.json";