Skip to content

Commit 4335ed4

Browse files
committed
feat: add warsaw jam
1 parent 1d6e47d commit 4335ed4

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

angular-hub/src/public/assets/data/community.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1510,5 +1510,31 @@
15101510
"linkedin": null,
15111511
"callForPapers": null,
15121512
"events": []
1513+
},
1514+
{
1515+
"name": "GDG Warszawa",
1516+
"type": "other",
1517+
"location": "Warsaw, Poland",
1518+
"url": "https://www.linkedin.com/company/gdg-warszawa/",
1519+
"mediaChannel": null,
1520+
"logo": "assets/logos/official-logo.webp",
1521+
"twitter": null,
1522+
"linkedin": null,
1523+
"callForPapers": null,
1524+
"events": [
1525+
{
1526+
"name": "Angular Warsaw Jam #1",
1527+
"type": "conference",
1528+
"location": "Warsaw, Poland",
1529+
"date": "2024-09-06",
1530+
"language": "English",
1531+
"isFree": true,
1532+
"isRemote": false,
1533+
"isOnsite": true,
1534+
"callForPapers": "https://docs.google.com/forms/d/e/1FAIpQLSeGYwxyEmE2j82ntJXkPQpUBHWOu3Lf_vndLilP6Y0ofxNwUA/viewform",
1535+
"callForPapersDueDate": "2024-08-20",
1536+
"url": "https://www.linkedin.com/company/gdg-warszawa/"
1537+
}
1538+
]
15131539
}
15141540
]

angular-hub/src/server/routes/v1/communities/index.get.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ import { CommunityListSchema } from '../../../schemas/community.schema';
66
export default defineEventHandler(() => {
77
try {
88
parse(CommunityListSchema, communities);
9-
return communities.filter((community) => community.type !== 'workshop');
9+
return communities.filter(
10+
(community) =>
11+
community.type !== 'workshop' && community.type !== 'other',
12+
);
1013
} catch (error) {
1114
throw new Error('Invalid community data format');
1215
}

0 commit comments

Comments
 (0)