* Fi missing sylaps icon in admin/apps and remove usage of imageSrc * Remove imageSrc from googleCalendar and verify that logo is still shown * Use logo in video apps location select: * Remove imageSrc from templates --------- Co-authored-by: Peer Richelsen <peeroke@gmail.com>
28 lines
751 B
TypeScript
28 lines
751 B
TypeScript
import { validJson } from "@calcom/lib/jsonUtils";
|
|
import type { AppMeta } from "@calcom/types/App";
|
|
|
|
import _package from "./package.json";
|
|
|
|
export const metadata = {
|
|
name: "Google Calendar",
|
|
description: _package.description,
|
|
installed: !!(process.env.GOOGLE_API_CREDENTIALS && validJson(process.env.GOOGLE_API_CREDENTIALS)),
|
|
type: "google_calendar",
|
|
title: "Google Calendar",
|
|
variant: "calendar",
|
|
category: "calendar",
|
|
categories: ["calendar"],
|
|
logo: "/api/app-store/googlecalendar/icon.svg",
|
|
publisher: "Cal.com",
|
|
rating: 5,
|
|
reviews: 69,
|
|
slug: "google-calendar",
|
|
trending: false,
|
|
url: "https://cal.com/",
|
|
verified: true,
|
|
email: "help@cal.com",
|
|
dirName: "googlecalendar",
|
|
} as AppMeta;
|
|
|
|
export default metadata;
|