mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
726f4668e0
* refactor: webhooks workflow * chore: update delete modal content
44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
import React from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
// mobx store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// layouts
|
|
import { AppLayout } from "layouts/app-layout";
|
|
import { WorkspaceSettingLayout } from "layouts/settings-layout";
|
|
// components
|
|
import { WorkspaceSettingHeader } from "components/headers";
|
|
import { WebhookForm } from "components/web-hooks";
|
|
// types
|
|
import { NextPageWithLayout } from "types/app";
|
|
|
|
const CreateWebhookPage: NextPageWithLayout = observer(() => {
|
|
const {
|
|
user: { currentWorkspaceRole },
|
|
} = useMobxStore();
|
|
|
|
const isAdmin = currentWorkspaceRole === 20;
|
|
|
|
if (!isAdmin)
|
|
return (
|
|
<div className="h-full w-full flex justify-center mt-10 p-4">
|
|
<p className="text-custom-text-300 text-sm">You are not authorized to access this page.</p>
|
|
</div>
|
|
);
|
|
|
|
return (
|
|
<div className="w-full overflow-y-auto py-8 pr-9 pl-1">
|
|
<WebhookForm />
|
|
</div>
|
|
);
|
|
});
|
|
|
|
CreateWebhookPage.getLayout = function getLayout(page: React.ReactElement) {
|
|
return (
|
|
<AppLayout header={<WorkspaceSettingHeader title="Webhook settings" />}>
|
|
<WorkspaceSettingLayout>{page}</WorkspaceSettingLayout>
|
|
</AppLayout>
|
|
);
|
|
};
|
|
|
|
export default CreateWebhookPage;
|