* intuita codemod: app-directory-boilerplate-calcom * manual: move folders to (settings-layout) route group * manual: add title/description metadata * manual: Change structure & Refactor to make code up to date
12 lines
292 B
TypeScript
12 lines
292 B
TypeScript
import { _generateMetadata } from "app/_utils";
|
|
|
|
import Page from "@calcom/features/ee/sso/page/user-sso-view";
|
|
|
|
export const generateMetadata = async () =>
|
|
await _generateMetadata(
|
|
(t) => t("sso_configuration"),
|
|
(t) => t("sso_configuration_description")
|
|
);
|
|
|
|
export default Page;
|