* Adds basic feature flag model * Create router.ts * WIP * WIP * WIP * WIP * Emails kill switch * Adds missing migrations * Type fix * Cleanup * Revert * Cleanup * Fixes migration * Update packages/features/flags/server/utils.ts Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com> --------- Co-authored-by: Alex van Andel <me@alexvanandel.com> Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
10 lines
256 B
TypeScript
10 lines
256 B
TypeScript
import { FlagListingView } from "@calcom/features/flags/pages/flag-listing-view";
|
|
|
|
import { getLayout } from "@components/auth/layouts/AdminLayout";
|
|
|
|
const FlagsPage = () => <FlagListingView />;
|
|
|
|
FlagsPage.getLayout = getLayout;
|
|
|
|
export default FlagsPage;
|