
* Adds available apps * Adds App Model * WIP * Create meta mask app folder * Add description and images * Remove credential from installed apps page * Updates seeder script * Seeder fixes * lowercase categories * Upgrades prisma * WIP * WIP * Hopefully fixes circular deps * Type fixes * Fixes seeder * Adds migration to connect Credentials to Apps * Updates app store callbacks * Updates google credentials * Uses dirName from DB * Type fixes * Update reschedule.ts * Seeder fixes * Fixes categories listing * Update index.ts * Update schema.prisma * Updates dependencies * Renames giphy app * Uses dynamic imports for app metadata * Fixes credentials error * Uses dynamic import for api handlers * Dynamic import fixes * Allows for simple folder names in app store * Remove video adaptor * Squashes app migrations * seeder fixes * Renames to metamask * Updates metamask metadata * Fixes dyamic imports * Remove comments * Create migration.sql Co-authored-by: zomars <zomars@me.com> Co-authored-by: Peer Richelsen <peeroke@gmail.com>
20 lines
826 B
TypeScript
20 lines
826 B
TypeScript
export const apiHandlers = {
|
|
// examplevideo: import("./_example/api"),
|
|
applecalendar: import("./applecalendar/api"),
|
|
caldavcalendar: import("./caldavcalendar/api"),
|
|
googlecalendar: import("./googlecalendar/api"),
|
|
hubspotothercalendar: import("./hubspotothercalendar/api"),
|
|
office365calendar: import("./office365calendar/api"),
|
|
slackmessaging: import("./slackmessaging/api"),
|
|
stripepayment: import("./stripepayment/api"),
|
|
tandemvideo: import("./tandemvideo/api"),
|
|
zoomvideo: import("@calcom/zoomvideo/api"),
|
|
office365video: import("@calcom/office365video/api"),
|
|
wipemycalother: import("./wipemycalother/api"),
|
|
jitsivideo: import("./jitsivideo/api"),
|
|
huddle01video: import("./huddle01video/api"),
|
|
metamask: import("./metamask/api"),
|
|
giphy: import("./giphy/api"),
|
|
};
|
|
|
|
export default apiHandlers;
|