* WIP * warnings and errors, and working app * Refresh token now usable * Correcting env.appStore.example * Reverting changes that will come from Sendgrid App PR * Resetting with main * Renaming all othercalendars * Fixing types * Renaming leftovers * More renaming stuff * Format readme * Adds prettier override for website wordlist * Omit salesforce app in this PR * Cleanup * Update AppSettings.tsx * Revert "Cleanup" This reverts commit 41f94c52c3a34ce8ae6047ce9d4c187722343d7e. * Update yarn.lock Co-authored-by: Leo Giovanetti <hello@leog.me> Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
19 lines
481 B
TypeScript
19 lines
481 B
TypeScript
import type { App } from "@calcom/types/App";
|
|
|
|
import config from "./config.json";
|
|
|
|
export const metadata = {
|
|
category: "other",
|
|
// FIXME: Currently for an app to be shown as installed, it must have this variable set. Either hardcoded or if it depends on some env variable, that should be checked here
|
|
installed: true,
|
|
rating: 0,
|
|
reviews: 0,
|
|
trending: true,
|
|
verified: true,
|
|
licenseRequired: true,
|
|
isProOnly: true,
|
|
...config,
|
|
} as App;
|
|
|
|
export default metadata;
|