feat: Add team deletion flow for cloud-hosted (#5717)
This commit is contained in:
@@ -32,7 +32,7 @@ function Home() {
|
|||||||
void pins.fetchPage();
|
void pins.fetchPage();
|
||||||
}, [pins]);
|
}, [pins]);
|
||||||
|
|
||||||
const canManageTeam = usePolicy(team).manage;
|
const can = usePolicy(team);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Scene
|
<Scene
|
||||||
@@ -49,7 +49,7 @@ function Home() {
|
|||||||
>
|
>
|
||||||
{!ui.languagePromptDismissed && <LanguagePrompt />}
|
{!ui.languagePromptDismissed && <LanguagePrompt />}
|
||||||
<Heading>{t("Home")}</Heading>
|
<Heading>{t("Home")}</Heading>
|
||||||
<PinnedDocuments pins={pins.home} canUpdate={canManageTeam} />
|
<PinnedDocuments pins={pins.home} canUpdate={can.update} />
|
||||||
<Documents>
|
<Documents>
|
||||||
<Tabs>
|
<Tabs>
|
||||||
<Tab to="/home" exact>
|
<Tab to="/home" exact>
|
||||||
|
|||||||
@@ -37,7 +37,13 @@ export default function Notices() {
|
|||||||
Please use a Google Workspaces account instead.
|
Please use a Google Workspaces account instead.
|
||||||
</Trans>
|
</Trans>
|
||||||
)}
|
)}
|
||||||
{notice === "maximum-teams" && (
|
{notice === "pending-deletion" && (
|
||||||
|
<Trans>
|
||||||
|
The workspace associated with your user is scheduled for deletion and
|
||||||
|
cannot at accessed at this time.
|
||||||
|
</Trans>
|
||||||
|
)}
|
||||||
|
{notice === "maximum-reached" && (
|
||||||
<Trans>
|
<Trans>
|
||||||
The workspace you authenticated with is not authorized on this
|
The workspace you authenticated with is not authorized on this
|
||||||
installation. Try another?
|
installation. Try another?
|
||||||
|
|||||||
@@ -20,18 +20,22 @@ import Switch from "~/components/Switch";
|
|||||||
import Text from "~/components/Text";
|
import Text from "~/components/Text";
|
||||||
import env from "~/env";
|
import env from "~/env";
|
||||||
import useCurrentTeam from "~/hooks/useCurrentTeam";
|
import useCurrentTeam from "~/hooks/useCurrentTeam";
|
||||||
|
import usePolicy from "~/hooks/usePolicy";
|
||||||
import useStores from "~/hooks/useStores";
|
import useStores from "~/hooks/useStores";
|
||||||
import useToasts from "~/hooks/useToasts";
|
import useToasts from "~/hooks/useToasts";
|
||||||
import isCloudHosted from "~/utils/isCloudHosted";
|
import isCloudHosted from "~/utils/isCloudHosted";
|
||||||
|
import TeamDelete from "../TeamDelete";
|
||||||
import ImageInput from "./components/ImageInput";
|
import ImageInput from "./components/ImageInput";
|
||||||
import SettingRow from "./components/SettingRow";
|
import SettingRow from "./components/SettingRow";
|
||||||
|
|
||||||
function Details() {
|
function Details() {
|
||||||
const { auth, ui } = useStores();
|
const { auth, dialogs, ui } = useStores();
|
||||||
const { showToast } = useToasts();
|
const { showToast } = useToasts();
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
const team = useCurrentTeam();
|
const team = useCurrentTeam();
|
||||||
const theme = useTheme();
|
const theme = useTheme();
|
||||||
|
const can = usePolicy(team);
|
||||||
|
|
||||||
const form = useRef<HTMLFormElement>(null);
|
const form = useRef<HTMLFormElement>(null);
|
||||||
const [accent, setAccent] = useState<null | undefined | string>(
|
const [accent, setAccent] = useState<null | undefined | string>(
|
||||||
team.preferences?.customTheme?.accent
|
team.preferences?.customTheme?.accent
|
||||||
@@ -125,6 +129,14 @@ function Details() {
|
|||||||
[showToast, t]
|
[showToast, t]
|
||||||
);
|
);
|
||||||
|
|
||||||
|
const showDeleteWorkspace = () => {
|
||||||
|
dialogs.openModal({
|
||||||
|
title: t("Delete workspace"),
|
||||||
|
content: <TeamDelete onSubmit={dialogs.closeAllModals} />,
|
||||||
|
isCentered: true,
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
const onSelectCollection = React.useCallback(async (value: string) => {
|
const onSelectCollection = React.useCallback(async (value: string) => {
|
||||||
const defaultCollectionId = value === "home" ? null : value;
|
const defaultCollectionId = value === "home" ? null : value;
|
||||||
setDefaultCollectionId(defaultCollectionId);
|
setDefaultCollectionId(defaultCollectionId);
|
||||||
@@ -222,6 +234,7 @@ function Details() {
|
|||||||
</SettingRow>
|
</SettingRow>
|
||||||
{team.avatarUrl && (
|
{team.avatarUrl && (
|
||||||
<SettingRow
|
<SettingRow
|
||||||
|
border={false}
|
||||||
name={TeamPreference.PublicBranding}
|
name={TeamPreference.PublicBranding}
|
||||||
label={t("Public branding")}
|
label={t("Public branding")}
|
||||||
description={t(
|
description={t(
|
||||||
@@ -287,6 +300,28 @@ function Details() {
|
|||||||
<Button type="submit" disabled={auth.isSaving || !isValid}>
|
<Button type="submit" disabled={auth.isSaving || !isValid}>
|
||||||
{auth.isSaving ? `${t("Saving")}…` : t("Save")}
|
{auth.isSaving ? `${t("Saving")}…` : t("Save")}
|
||||||
</Button>
|
</Button>
|
||||||
|
|
||||||
|
{can.delete && (
|
||||||
|
<>
|
||||||
|
<p> </p>
|
||||||
|
|
||||||
|
<Heading as="h2">{t("Danger")}</Heading>
|
||||||
|
<SettingRow
|
||||||
|
name="delete"
|
||||||
|
border={false}
|
||||||
|
label={t("Delete workspace")}
|
||||||
|
description={t(
|
||||||
|
"You can delete this entire workspace including collections, documents, and users."
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
<span>
|
||||||
|
<Button onClick={showDeleteWorkspace} neutral>
|
||||||
|
{t("Delete workspace")}…
|
||||||
|
</Button>
|
||||||
|
</span>
|
||||||
|
</SettingRow>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
</form>
|
</form>
|
||||||
</Scene>
|
</Scene>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
|||||||
@@ -184,7 +184,7 @@ function Members() {
|
|||||||
</Flex>
|
</Flex>
|
||||||
<PeopleTable
|
<PeopleTable
|
||||||
data={data}
|
data={data}
|
||||||
canManage={can.manage}
|
canManage={can.update}
|
||||||
isLoading={isLoading}
|
isLoading={isLoading}
|
||||||
page={page}
|
page={page}
|
||||||
pageSize={limit}
|
pageSize={limit}
|
||||||
|
|||||||
@@ -47,6 +47,7 @@ function Preferences() {
|
|||||||
dialogs.openModal({
|
dialogs.openModal({
|
||||||
title: t("Delete account"),
|
title: t("Delete account"),
|
||||||
content: <UserDelete />,
|
content: <UserDelete />,
|
||||||
|
isCentered: true,
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -131,8 +132,7 @@ function Preferences() {
|
|||||||
/>
|
/>
|
||||||
</SettingRow>
|
</SettingRow>
|
||||||
|
|
||||||
<p> </p>
|
<Heading as="h2">{t("Danger")}</Heading>
|
||||||
|
|
||||||
<SettingRow
|
<SettingRow
|
||||||
name="delete"
|
name="delete"
|
||||||
label={t("Delete account")}
|
label={t("Delete account")}
|
||||||
|
|||||||
@@ -70,7 +70,7 @@ function Shares() {
|
|||||||
<Scene title={t("Shared Links")} icon={<LinkIcon />}>
|
<Scene title={t("Shared Links")} icon={<LinkIcon />}>
|
||||||
<Heading>{t("Shared Links")}</Heading>
|
<Heading>{t("Shared Links")}</Heading>
|
||||||
|
|
||||||
{can.manage && !canShareDocuments && (
|
{can.update && !canShareDocuments && (
|
||||||
<>
|
<>
|
||||||
<Notice icon={<WarningIcon />}>
|
<Notice icon={<WarningIcon />}>
|
||||||
{t("Sharing is currently disabled.")}{" "}
|
{t("Sharing is currently disabled.")}{" "}
|
||||||
@@ -95,7 +95,7 @@ function Shares() {
|
|||||||
|
|
||||||
<SharesTable
|
<SharesTable
|
||||||
data={data}
|
data={data}
|
||||||
canManage={can.manage}
|
canManage={can.update}
|
||||||
isLoading={isLoading}
|
isLoading={isLoading}
|
||||||
page={page}
|
page={page}
|
||||||
pageSize={limit}
|
pageSize={limit}
|
||||||
|
|||||||
122
app/scenes/TeamDelete.tsx
Normal file
122
app/scenes/TeamDelete.tsx
Normal file
@@ -0,0 +1,122 @@
|
|||||||
|
import { observer } from "mobx-react";
|
||||||
|
import * as React from "react";
|
||||||
|
import { useForm } from "react-hook-form";
|
||||||
|
import { useTranslation, Trans } from "react-i18next";
|
||||||
|
import Button from "~/components/Button";
|
||||||
|
import Flex from "~/components/Flex";
|
||||||
|
import Input from "~/components/Input";
|
||||||
|
import Text from "~/components/Text";
|
||||||
|
import env from "~/env";
|
||||||
|
import useCurrentTeam from "~/hooks/useCurrentTeam";
|
||||||
|
import useStores from "~/hooks/useStores";
|
||||||
|
import useToasts from "~/hooks/useToasts";
|
||||||
|
|
||||||
|
type FormData = {
|
||||||
|
code: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
type Props = {
|
||||||
|
onSubmit: () => void;
|
||||||
|
};
|
||||||
|
|
||||||
|
function TeamDelete({ onSubmit }: Props) {
|
||||||
|
const [isWaitingCode, setWaitingCode] = React.useState(false);
|
||||||
|
const { auth } = useStores();
|
||||||
|
const { showToast } = useToasts();
|
||||||
|
const team = useCurrentTeam();
|
||||||
|
const { t } = useTranslation();
|
||||||
|
const {
|
||||||
|
register,
|
||||||
|
handleSubmit: formHandleSubmit,
|
||||||
|
formState,
|
||||||
|
} = useForm<FormData>();
|
||||||
|
|
||||||
|
const handleRequestDelete = React.useCallback(
|
||||||
|
async (ev: React.SyntheticEvent) => {
|
||||||
|
ev.preventDefault();
|
||||||
|
|
||||||
|
try {
|
||||||
|
await auth.requestDeleteTeam();
|
||||||
|
setWaitingCode(true);
|
||||||
|
} catch (error) {
|
||||||
|
showToast(error.message, {
|
||||||
|
type: "error",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
[auth, showToast]
|
||||||
|
);
|
||||||
|
|
||||||
|
const handleSubmit = React.useCallback(
|
||||||
|
async (data: FormData) => {
|
||||||
|
try {
|
||||||
|
await auth.deleteTeam(data);
|
||||||
|
await auth.logout();
|
||||||
|
onSubmit();
|
||||||
|
} catch (error) {
|
||||||
|
showToast(error.message, {
|
||||||
|
type: "error",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
[auth, onSubmit, showToast]
|
||||||
|
);
|
||||||
|
|
||||||
|
const inputProps = register("code", {
|
||||||
|
required: true,
|
||||||
|
});
|
||||||
|
const appName = env.APP_NAME;
|
||||||
|
const workspaceName = team.name;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Flex column>
|
||||||
|
<form onSubmit={formHandleSubmit(handleSubmit)}>
|
||||||
|
{isWaitingCode ? (
|
||||||
|
<>
|
||||||
|
<Text type="secondary">
|
||||||
|
<Trans>
|
||||||
|
A confirmation code has been sent to your email address, please
|
||||||
|
enter the code below to permanantly destroy this workspace.
|
||||||
|
</Trans>
|
||||||
|
</Text>
|
||||||
|
<Input
|
||||||
|
placeholder={t("Confirmation code")}
|
||||||
|
autoComplete="off"
|
||||||
|
autoFocus
|
||||||
|
maxLength={8}
|
||||||
|
required
|
||||||
|
{...inputProps}
|
||||||
|
/>
|
||||||
|
</>
|
||||||
|
) : (
|
||||||
|
<>
|
||||||
|
<Text type="secondary">
|
||||||
|
<Trans>
|
||||||
|
Deleting the <strong>{{ workspaceName }}</strong> workspace will
|
||||||
|
destroy all collections, documents, users, and associated data.
|
||||||
|
You will be immediately logged out of {{ appName }}.
|
||||||
|
</Trans>
|
||||||
|
</Text>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
{env.EMAIL_ENABLED && !isWaitingCode ? (
|
||||||
|
<Button type="submit" onClick={handleRequestDelete} neutral>
|
||||||
|
{t("Continue")}…
|
||||||
|
</Button>
|
||||||
|
) : (
|
||||||
|
<Button
|
||||||
|
type="submit"
|
||||||
|
disabled={formState.isSubmitting || !formState.isValid}
|
||||||
|
danger
|
||||||
|
>
|
||||||
|
{formState.isSubmitting
|
||||||
|
? `${t("Deleting")}…`
|
||||||
|
: t("Delete workspace")}
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
|
</form>
|
||||||
|
</Flex>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default observer(TeamDelete);
|
||||||
@@ -30,7 +30,7 @@ function UserDelete() {
|
|||||||
ev.preventDefault();
|
ev.preventDefault();
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await auth.requestDelete();
|
await auth.requestDeleteUser();
|
||||||
setWaitingCode(true);
|
setWaitingCode(true);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
showToast(error.message, {
|
showToast(error.message, {
|
||||||
@@ -71,16 +71,8 @@ function UserDelete() {
|
|||||||
enter the code below to permanantly destroy your account.
|
enter the code below to permanantly destroy your account.
|
||||||
</Trans>
|
</Trans>
|
||||||
</Text>
|
</Text>
|
||||||
<Text type="secondary">
|
|
||||||
<Trans
|
|
||||||
defaults="<em>Note:</em> Signing back in will cause a new account to be automatically reprovisioned."
|
|
||||||
components={{
|
|
||||||
em: <strong />,
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</Text>
|
|
||||||
<Input
|
<Input
|
||||||
placeholder="CODE"
|
placeholder={t("Confirmation code")}
|
||||||
autoComplete="off"
|
autoComplete="off"
|
||||||
autoFocus
|
autoFocus
|
||||||
maxLength={8}
|
maxLength={8}
|
||||||
@@ -105,10 +97,14 @@ function UserDelete() {
|
|||||||
{t("Continue")}…
|
{t("Continue")}…
|
||||||
</Button>
|
</Button>
|
||||||
) : (
|
) : (
|
||||||
<Button type="submit" disabled={formState.isSubmitting} danger>
|
<Button
|
||||||
|
type="submit"
|
||||||
|
disabled={formState.isSubmitting || !formState.isValid}
|
||||||
|
danger
|
||||||
|
>
|
||||||
{formState.isSubmitting
|
{formState.isSubmitting
|
||||||
? `${t("Deleting")}…`
|
? `${t("Deleting")}…`
|
||||||
: t("Delete My Account")}
|
: t("Delete my account")}
|
||||||
</Button>
|
</Button>
|
||||||
)}
|
)}
|
||||||
</form>
|
</form>
|
||||||
|
|||||||
@@ -241,13 +241,14 @@ export default class AuthStore {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@action
|
requestDeleteUser = () => client.post(`/users.requestDelete`);
|
||||||
requestDelete = () => client.post(`/users.requestDelete`);
|
|
||||||
|
requestDeleteTeam = () => client.post(`/teams.requestDelete`);
|
||||||
|
|
||||||
@action
|
@action
|
||||||
deleteUser = async (data: { code: string }) => {
|
deleteUser = async (data: { code: string }) => {
|
||||||
await client.post(`/users.delete`, data);
|
await client.post(`/users.delete`, data);
|
||||||
runInAction("AuthStore#updateUser", () => {
|
runInAction("AuthStore#deleteUser", () => {
|
||||||
this.user = null;
|
this.user = null;
|
||||||
this.team = null;
|
this.team = null;
|
||||||
this.collaborationToken = null;
|
this.collaborationToken = null;
|
||||||
@@ -258,6 +259,18 @@ export default class AuthStore {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@action
|
||||||
|
deleteTeam = async (data: { code: string }) => {
|
||||||
|
await client.post(`/teams.delete`, data);
|
||||||
|
runInAction("AuthStore#deleteTeam", () => {
|
||||||
|
this.user = null;
|
||||||
|
this.availableTeams = this.availableTeams?.filter(
|
||||||
|
(team) => team.id !== this.team?.id
|
||||||
|
);
|
||||||
|
this.policies = [];
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
@action
|
@action
|
||||||
updateUser = async (params: {
|
updateUser = async (params: {
|
||||||
name?: string;
|
name?: string;
|
||||||
|
|||||||
@@ -362,7 +362,7 @@ describe("accountProvisioner", () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
expect(error.message).toEqual(
|
expect(error.message).toEqual(
|
||||||
"The maximum number of teams has been reached"
|
"The maximum number of workspaces has been reached"
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
33
server/commands/teamDestroyer.ts
Normal file
33
server/commands/teamDestroyer.ts
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
import { Transaction } from "sequelize";
|
||||||
|
import { Event, User, Team } from "@server/models";
|
||||||
|
|
||||||
|
export default async function teamDestroyer({
|
||||||
|
user,
|
||||||
|
team,
|
||||||
|
ip,
|
||||||
|
transaction,
|
||||||
|
}: {
|
||||||
|
user: User;
|
||||||
|
team: Team;
|
||||||
|
ip: string;
|
||||||
|
transaction?: Transaction;
|
||||||
|
}) {
|
||||||
|
await Event.create(
|
||||||
|
{
|
||||||
|
name: "teams.delete",
|
||||||
|
actorId: user.id,
|
||||||
|
teamId: team.id,
|
||||||
|
data: {
|
||||||
|
name: team.name,
|
||||||
|
},
|
||||||
|
ip,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
transaction,
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
return team.destroy({
|
||||||
|
transaction,
|
||||||
|
});
|
||||||
|
}
|
||||||
@@ -4,6 +4,7 @@ import {
|
|||||||
DomainNotAllowedError,
|
DomainNotAllowedError,
|
||||||
InvalidAuthenticationError,
|
InvalidAuthenticationError,
|
||||||
MaximumTeamsError,
|
MaximumTeamsError,
|
||||||
|
TeamPendingDeletionError,
|
||||||
} from "@server/errors";
|
} from "@server/errors";
|
||||||
import { traceFunction } from "@server/logging/tracing";
|
import { traceFunction } from "@server/logging/tracing";
|
||||||
import { Team, AuthenticationProvider } from "@server/models";
|
import { Team, AuthenticationProvider } from "@server/models";
|
||||||
@@ -58,6 +59,7 @@ async function teamProvisioner({
|
|||||||
model: Team,
|
model: Team,
|
||||||
as: "team",
|
as: "team",
|
||||||
required: true,
|
required: true,
|
||||||
|
paranoid: false,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
@@ -65,6 +67,10 @@ async function teamProvisioner({
|
|||||||
// This authentication provider already exists which means we have a team and
|
// This authentication provider already exists which means we have a team and
|
||||||
// there is nothing left to do but return the existing credentials
|
// there is nothing left to do but return the existing credentials
|
||||||
if (authP) {
|
if (authP) {
|
||||||
|
if (authP.team.deletedAt) {
|
||||||
|
throw TeamPendingDeletionError();
|
||||||
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
authenticationProvider: authP,
|
authenticationProvider: authP,
|
||||||
team: authP.team,
|
team: authP.team,
|
||||||
|
|||||||
@@ -1,16 +1,17 @@
|
|||||||
import { Op } from "sequelize";
|
import { Op, Transaction } from "sequelize";
|
||||||
import { Event, User } from "@server/models";
|
import { Event, User } from "@server/models";
|
||||||
import { sequelize } from "@server/storage/database";
|
|
||||||
import { ValidationError } from "../errors";
|
import { ValidationError } from "../errors";
|
||||||
|
|
||||||
export default async function userDestroyer({
|
export default async function userDestroyer({
|
||||||
user,
|
user,
|
||||||
actor,
|
actor,
|
||||||
ip,
|
ip,
|
||||||
|
transaction,
|
||||||
}: {
|
}: {
|
||||||
user: User;
|
user: User;
|
||||||
actor: User;
|
actor: User;
|
||||||
ip: string;
|
ip: string;
|
||||||
|
transaction?: Transaction;
|
||||||
}) {
|
}) {
|
||||||
const { teamId } = user;
|
const { teamId } = user;
|
||||||
const usersCount = await User.count({
|
const usersCount = await User.count({
|
||||||
@@ -20,7 +21,9 @@ export default async function userDestroyer({
|
|||||||
});
|
});
|
||||||
|
|
||||||
if (usersCount === 1) {
|
if (usersCount === 1) {
|
||||||
throw ValidationError("Cannot delete last user on the team.");
|
throw ValidationError(
|
||||||
|
"Cannot delete last user on the team, delete the workspace instead."
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (user.isAdmin) {
|
if (user.isAdmin) {
|
||||||
@@ -41,33 +44,23 @@ export default async function userDestroyer({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const transaction = await sequelize.transaction();
|
await Event.create(
|
||||||
let response;
|
{
|
||||||
|
name: "users.delete",
|
||||||
try {
|
actorId: actor.id,
|
||||||
response = await user.destroy({
|
userId: user.id,
|
||||||
transaction,
|
teamId,
|
||||||
});
|
data: {
|
||||||
await Event.create(
|
name: user.name,
|
||||||
{
|
|
||||||
name: "users.delete",
|
|
||||||
actorId: actor.id,
|
|
||||||
userId: user.id,
|
|
||||||
teamId,
|
|
||||||
data: {
|
|
||||||
name: user.name,
|
|
||||||
},
|
|
||||||
ip,
|
|
||||||
},
|
},
|
||||||
{
|
ip,
|
||||||
transaction,
|
},
|
||||||
}
|
{
|
||||||
);
|
transaction,
|
||||||
await transaction.commit();
|
}
|
||||||
} catch (err) {
|
);
|
||||||
await transaction.rollback();
|
|
||||||
throw err;
|
|
||||||
}
|
|
||||||
|
|
||||||
return response;
|
return user.destroy({
|
||||||
|
transaction,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
60
server/emails/templates/ConfirmTeamDeleteEmail.tsx
Normal file
60
server/emails/templates/ConfirmTeamDeleteEmail.tsx
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
import * as React from "react";
|
||||||
|
import env from "@server/env";
|
||||||
|
import BaseEmail, { EmailProps } from "./BaseEmail";
|
||||||
|
import Body from "./components/Body";
|
||||||
|
import CopyableCode from "./components/CopyableCode";
|
||||||
|
import EmailTemplate from "./components/EmailLayout";
|
||||||
|
import EmptySpace from "./components/EmptySpace";
|
||||||
|
import Footer from "./components/Footer";
|
||||||
|
import Header from "./components/Header";
|
||||||
|
import Heading from "./components/Heading";
|
||||||
|
|
||||||
|
type Props = EmailProps & {
|
||||||
|
deleteConfirmationCode: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Email sent to a user when they request to delete their workspace.
|
||||||
|
*/
|
||||||
|
export default class ConfirmTeamDeleteEmail extends BaseEmail<
|
||||||
|
Props,
|
||||||
|
Record<string, any>
|
||||||
|
> {
|
||||||
|
protected subject() {
|
||||||
|
return `Your workspace deletion request`;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected preview() {
|
||||||
|
return `Your requested workspace deletion code`;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected renderAsText({ deleteConfirmationCode }: Props): string {
|
||||||
|
return `
|
||||||
|
You requested to permanantly delete your ${env.APP_NAME} workspace. Please enter the code below to confirm the workspace deletion.
|
||||||
|
|
||||||
|
Code: ${deleteConfirmationCode}
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected render({ deleteConfirmationCode }: Props) {
|
||||||
|
return (
|
||||||
|
<EmailTemplate>
|
||||||
|
<Header />
|
||||||
|
|
||||||
|
<Body>
|
||||||
|
<Heading>Your workspace deletion request</Heading>
|
||||||
|
<p>
|
||||||
|
You requested to permanantly delete your {env.APP_NAME} workspace.
|
||||||
|
Please enter the code below to confirm your workspace deletion.
|
||||||
|
</p>
|
||||||
|
<EmptySpace height={5} />
|
||||||
|
<p>
|
||||||
|
<CopyableCode>{deleteConfirmationCode}</CopyableCode>
|
||||||
|
</p>
|
||||||
|
</Body>
|
||||||
|
|
||||||
|
<Footer />
|
||||||
|
</EmailTemplate>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -134,10 +134,18 @@ export function OAuthStateMismatchError(
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function MaximumTeamsError(
|
export function MaximumTeamsError(
|
||||||
message = "The maximum number of teams has been reached"
|
message = "The maximum number of workspaces has been reached"
|
||||||
) {
|
) {
|
||||||
return httpErrors(400, message, {
|
return httpErrors(400, message, {
|
||||||
id: "maximum_teams",
|
id: "maximum_reached",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
export function TeamPendingDeletionError(
|
||||||
|
message = "The workspace is pending deletion"
|
||||||
|
) {
|
||||||
|
return httpErrors(403, message, {
|
||||||
|
id: "pending_deletion",
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -160,7 +168,7 @@ export function MicrosoftGraphError(
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function TeamDomainRequiredError(
|
export function TeamDomainRequiredError(
|
||||||
message = "Unable to determine team from current domain or subdomain"
|
message = "Unable to determine workspace from current domain or subdomain"
|
||||||
) {
|
) {
|
||||||
return httpErrors(400, message, {
|
return httpErrors(400, message, {
|
||||||
id: "domain_required",
|
id: "domain_required",
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import crypto from "crypto";
|
||||||
import fs from "fs";
|
import fs from "fs";
|
||||||
import path from "path";
|
import path from "path";
|
||||||
import { URL } from "url";
|
import { URL } from "url";
|
||||||
@@ -176,6 +177,22 @@ class Team extends ParanoidModel {
|
|||||||
return url.href.replace(/\/$/, "");
|
return url.href.replace(/\/$/, "");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns a code that can be used to delete the user's team. The code will
|
||||||
|
* be rotated when the user signs out.
|
||||||
|
*
|
||||||
|
* @returns The deletion code.
|
||||||
|
*/
|
||||||
|
public getDeleteConfirmationCode(user: User) {
|
||||||
|
return crypto
|
||||||
|
.createHash("md5")
|
||||||
|
.update(`${this.id}${user.jwtSecret}`)
|
||||||
|
.digest("hex")
|
||||||
|
.replace(/[l1IoO0]/gi, "")
|
||||||
|
.slice(0, 8)
|
||||||
|
.toUpperCase();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Preferences that decide behavior for the team.
|
* Preferences that decide behavior for the team.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -12,7 +12,6 @@ it("should allow reading only", async () => {
|
|||||||
});
|
});
|
||||||
const abilities = serialize(user, team);
|
const abilities = serialize(user, team);
|
||||||
expect(abilities.read).toEqual(true);
|
expect(abilities.read).toEqual(true);
|
||||||
expect(abilities.manage).toEqual(false);
|
|
||||||
expect(abilities.createTeam).toEqual(false);
|
expect(abilities.createTeam).toEqual(false);
|
||||||
expect(abilities.createAttachment).toEqual(true);
|
expect(abilities.createAttachment).toEqual(true);
|
||||||
expect(abilities.createCollection).toEqual(true);
|
expect(abilities.createCollection).toEqual(true);
|
||||||
@@ -28,7 +27,6 @@ it("should allow admins to manage", async () => {
|
|||||||
});
|
});
|
||||||
const abilities = serialize(admin, team);
|
const abilities = serialize(admin, team);
|
||||||
expect(abilities.read).toEqual(true);
|
expect(abilities.read).toEqual(true);
|
||||||
expect(abilities.manage).toEqual(true);
|
|
||||||
expect(abilities.createTeam).toEqual(false);
|
expect(abilities.createTeam).toEqual(false);
|
||||||
expect(abilities.createAttachment).toEqual(true);
|
expect(abilities.createAttachment).toEqual(true);
|
||||||
expect(abilities.createCollection).toEqual(true);
|
expect(abilities.createCollection).toEqual(true);
|
||||||
@@ -46,7 +44,6 @@ it("should allow creation on hosted envs", async () => {
|
|||||||
});
|
});
|
||||||
const abilities = serialize(admin, team);
|
const abilities = serialize(admin, team);
|
||||||
expect(abilities.read).toEqual(true);
|
expect(abilities.read).toEqual(true);
|
||||||
expect(abilities.manage).toEqual(true);
|
|
||||||
expect(abilities.createTeam).toEqual(true);
|
expect(abilities.createTeam).toEqual(true);
|
||||||
expect(abilities.createAttachment).toEqual(true);
|
expect(abilities.createAttachment).toEqual(true);
|
||||||
expect(abilities.createCollection).toEqual(true);
|
expect(abilities.createCollection).toEqual(true);
|
||||||
|
|||||||
@@ -14,11 +14,22 @@ allow(User, "share", Team, (user, team) => {
|
|||||||
|
|
||||||
allow(User, "createTeam", Team, () => {
|
allow(User, "createTeam", Team, () => {
|
||||||
if (!env.isCloudHosted()) {
|
if (!env.isCloudHosted()) {
|
||||||
throw IncorrectEditionError("createTeam only available on cloud");
|
throw IncorrectEditionError("Functionality is only available on cloud");
|
||||||
}
|
}
|
||||||
|
return true;
|
||||||
});
|
});
|
||||||
|
|
||||||
allow(User, ["update", "manage"], Team, (user, team) => {
|
allow(User, "update", Team, (user, team) => {
|
||||||
|
if (!team || user.isViewer || user.teamId !== team.id) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return user.isAdmin;
|
||||||
|
});
|
||||||
|
|
||||||
|
allow(User, ["delete", "audit"], Team, (user, team) => {
|
||||||
|
if (!env.isCloudHosted()) {
|
||||||
|
throw IncorrectEditionError("Functionality is only available on cloud");
|
||||||
|
}
|
||||||
if (!team || user.isViewer || user.teamId !== team.id) {
|
if (!team || user.isViewer || user.teamId !== team.id) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,9 +1,14 @@
|
|||||||
|
import env from "@server/env";
|
||||||
import { buildEvent, buildUser } from "@server/test/factories";
|
import { buildEvent, buildUser } from "@server/test/factories";
|
||||||
import { seed, getTestServer } from "@server/test/support";
|
import { seed, getTestServer } from "@server/test/support";
|
||||||
|
|
||||||
const server = getTestServer();
|
const server = getTestServer();
|
||||||
|
|
||||||
describe("#events.list", () => {
|
describe("#events.list", () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
env.DEPLOYMENT = "hosted";
|
||||||
|
});
|
||||||
|
|
||||||
it("should only return activity events", async () => {
|
it("should only return activity events", async () => {
|
||||||
const { user, admin, document, collection } = await seed();
|
const { user, admin, document, collection } = await seed();
|
||||||
// audit event
|
// audit event
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ router.post(
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (auditLog) {
|
if (auditLog) {
|
||||||
authorize(user, "manage", user.team);
|
authorize(user, "audit", user.team);
|
||||||
where.name = Event.AUDIT_EVENTS;
|
where.name = Event.AUDIT_EVENTS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ router.post(
|
|||||||
type,
|
type,
|
||||||
};
|
};
|
||||||
const team = await Team.findByPk(user.teamId);
|
const team = await Team.findByPk(user.teamId);
|
||||||
authorize(user, "manage", team);
|
authorize(user, "update", team);
|
||||||
|
|
||||||
const [exports, total] = await Promise.all([
|
const [exports, total] = await Promise.all([
|
||||||
FileOperation.findAll({
|
FileOperation.findAll({
|
||||||
|
|||||||
@@ -53,3 +53,11 @@ export const TeamsUpdateSchema = BaseSchema.extend({
|
|||||||
});
|
});
|
||||||
|
|
||||||
export type TeamsUpdateSchemaReq = z.infer<typeof TeamsUpdateSchema>;
|
export type TeamsUpdateSchemaReq = z.infer<typeof TeamsUpdateSchema>;
|
||||||
|
|
||||||
|
export const TeamsDeleteSchema = BaseSchema.extend({
|
||||||
|
body: z.object({
|
||||||
|
code: z.string(),
|
||||||
|
}),
|
||||||
|
});
|
||||||
|
|
||||||
|
export type TeamsDeleteSchemaReq = z.infer<typeof TeamsDeleteSchema>;
|
||||||
|
|||||||
@@ -1,7 +1,11 @@
|
|||||||
import invariant from "invariant";
|
import invariant from "invariant";
|
||||||
import Router from "koa-router";
|
import Router from "koa-router";
|
||||||
import teamCreator from "@server/commands/teamCreator";
|
import teamCreator from "@server/commands/teamCreator";
|
||||||
|
import teamDestroyer from "@server/commands/teamDestroyer";
|
||||||
import teamUpdater from "@server/commands/teamUpdater";
|
import teamUpdater from "@server/commands/teamUpdater";
|
||||||
|
import ConfirmTeamDeleteEmail from "@server/emails/templates/ConfirmTeamDeleteEmail";
|
||||||
|
import env from "@server/env";
|
||||||
|
import { ValidationError } from "@server/errors";
|
||||||
import auth from "@server/middlewares/authentication";
|
import auth from "@server/middlewares/authentication";
|
||||||
import { rateLimiter } from "@server/middlewares/rateLimiter";
|
import { rateLimiter } from "@server/middlewares/rateLimiter";
|
||||||
import { transaction } from "@server/middlewares/transaction";
|
import { transaction } from "@server/middlewares/transaction";
|
||||||
@@ -11,9 +15,11 @@ import { authorize } from "@server/policies";
|
|||||||
import { presentTeam, presentPolicies } from "@server/presenters";
|
import { presentTeam, presentPolicies } from "@server/presenters";
|
||||||
import { APIContext } from "@server/types";
|
import { APIContext } from "@server/types";
|
||||||
import { RateLimiterStrategy } from "@server/utils/RateLimiter";
|
import { RateLimiterStrategy } from "@server/utils/RateLimiter";
|
||||||
|
import { safeEqual } from "@server/utils/crypto";
|
||||||
import * as T from "./schema";
|
import * as T from "./schema";
|
||||||
|
|
||||||
const router = new Router();
|
const router = new Router();
|
||||||
|
const emailEnabled = !!(env.SMTP_HOST || env.ENVIRONMENT === "development");
|
||||||
|
|
||||||
router.post(
|
router.post(
|
||||||
"team.update",
|
"team.update",
|
||||||
@@ -44,6 +50,63 @@ router.post(
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
router.post(
|
||||||
|
"teams.requestDelete",
|
||||||
|
rateLimiter(RateLimiterStrategy.FivePerHour),
|
||||||
|
auth(),
|
||||||
|
async (ctx: APIContext) => {
|
||||||
|
const { user } = ctx.state.auth;
|
||||||
|
const { team } = user;
|
||||||
|
authorize(user, "delete", team);
|
||||||
|
|
||||||
|
if (emailEnabled) {
|
||||||
|
await new ConfirmTeamDeleteEmail({
|
||||||
|
to: user.email,
|
||||||
|
deleteConfirmationCode: team.getDeleteConfirmationCode(user),
|
||||||
|
}).schedule();
|
||||||
|
}
|
||||||
|
|
||||||
|
ctx.body = {
|
||||||
|
success: true,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
router.post(
|
||||||
|
"teams.delete",
|
||||||
|
rateLimiter(RateLimiterStrategy.TenPerHour),
|
||||||
|
auth(),
|
||||||
|
validate(T.TeamsDeleteSchema),
|
||||||
|
transaction(),
|
||||||
|
async (ctx: APIContext<T.TeamsDeleteSchemaReq>) => {
|
||||||
|
const { auth, transaction } = ctx.state;
|
||||||
|
const { code } = ctx.input.body;
|
||||||
|
const { user } = auth;
|
||||||
|
const { team } = user;
|
||||||
|
|
||||||
|
authorize(user, "delete", team);
|
||||||
|
|
||||||
|
if (emailEnabled) {
|
||||||
|
const deleteConfirmationCode = team.getDeleteConfirmationCode(user);
|
||||||
|
|
||||||
|
if (!safeEqual(code, deleteConfirmationCode)) {
|
||||||
|
throw ValidationError("The confirmation code was incorrect");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
await teamDestroyer({
|
||||||
|
team,
|
||||||
|
user,
|
||||||
|
transaction,
|
||||||
|
ip: ctx.request.ip,
|
||||||
|
});
|
||||||
|
|
||||||
|
ctx.body = {
|
||||||
|
success: true,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
router.post(
|
router.post(
|
||||||
"teams.create",
|
"teams.create",
|
||||||
rateLimiter(RateLimiterStrategy.FivePerHour),
|
rateLimiter(RateLimiterStrategy.FivePerHour),
|
||||||
|
|||||||
@@ -33,3 +33,12 @@ export const UsersUpdateSchema = BaseSchema.extend({
|
|||||||
});
|
});
|
||||||
|
|
||||||
export type UsersUpdateReq = z.infer<typeof UsersUpdateSchema>;
|
export type UsersUpdateReq = z.infer<typeof UsersUpdateSchema>;
|
||||||
|
|
||||||
|
export const UsersDeleteSchema = BaseSchema.extend({
|
||||||
|
body: z.object({
|
||||||
|
code: z.string().optional(),
|
||||||
|
id: z.string().uuid().optional(),
|
||||||
|
}),
|
||||||
|
});
|
||||||
|
|
||||||
|
export type UsersDeleteSchemaReq = z.infer<typeof UsersDeleteSchema>;
|
||||||
|
|||||||
@@ -28,7 +28,6 @@ import {
|
|||||||
assertSort,
|
assertSort,
|
||||||
assertPresent,
|
assertPresent,
|
||||||
assertArray,
|
assertArray,
|
||||||
assertUuid,
|
|
||||||
} from "@server/validation";
|
} from "@server/validation";
|
||||||
import pagination from "../middlewares/pagination";
|
import pagination from "../middlewares/pagination";
|
||||||
import * as T from "./schema";
|
import * as T from "./schema";
|
||||||
@@ -449,13 +448,15 @@ router.post(
|
|||||||
"users.delete",
|
"users.delete",
|
||||||
rateLimiter(RateLimiterStrategy.TenPerHour),
|
rateLimiter(RateLimiterStrategy.TenPerHour),
|
||||||
auth(),
|
auth(),
|
||||||
async (ctx: APIContext) => {
|
validate(T.UsersDeleteSchema),
|
||||||
const { id, code = "" } = ctx.request.body;
|
transaction(),
|
||||||
|
async (ctx: APIContext<T.UsersDeleteSchemaReq>) => {
|
||||||
|
const { transaction } = ctx.state;
|
||||||
|
const { id, code } = ctx.request.body;
|
||||||
const actor = ctx.state.auth.user;
|
const actor = ctx.state.auth.user;
|
||||||
let user: User;
|
let user: User;
|
||||||
|
|
||||||
if (id) {
|
if (id) {
|
||||||
assertUuid(id, "id must be a UUID");
|
|
||||||
user = await User.findByPk(id, {
|
user = await User.findByPk(id, {
|
||||||
rejectOnEmpty: true,
|
rejectOnEmpty: true,
|
||||||
});
|
});
|
||||||
@@ -478,6 +479,7 @@ router.post(
|
|||||||
user,
|
user,
|
||||||
actor,
|
actor,
|
||||||
ip: ctx.request.ip,
|
ip: ctx.request.ip,
|
||||||
|
transaction,
|
||||||
});
|
});
|
||||||
|
|
||||||
ctx.body = {
|
ctx.body = {
|
||||||
|
|||||||
@@ -680,6 +680,7 @@
|
|||||||
"The domain associated with your email address has not been allowed for this workspace.": "The domain associated with your email address has not been allowed for this workspace.",
|
"The domain associated with your email address has not been allowed for this workspace.": "The domain associated with your email address has not been allowed for this workspace.",
|
||||||
"Unable to sign-in. Please navigate to your workspace's custom URL, then try to sign-in again.<1></1>If you were invited to a workspace, you will find a link to it in the invite email.": "Unable to sign-in. Please navigate to your workspace's custom URL, then try to sign-in again.<1></1>If you were invited to a workspace, you will find a link to it in the invite email.",
|
"Unable to sign-in. Please navigate to your workspace's custom URL, then try to sign-in again.<1></1>If you were invited to a workspace, you will find a link to it in the invite email.": "Unable to sign-in. Please navigate to your workspace's custom URL, then try to sign-in again.<1></1>If you were invited to a workspace, you will find a link to it in the invite email.",
|
||||||
"Sorry, a new account cannot be created with a personal Gmail address.<1></1>Please use a Google Workspaces account instead.": "Sorry, a new account cannot be created with a personal Gmail address.<1></1>Please use a Google Workspaces account instead.",
|
"Sorry, a new account cannot be created with a personal Gmail address.<1></1>Please use a Google Workspaces account instead.": "Sorry, a new account cannot be created with a personal Gmail address.<1></1>Please use a Google Workspaces account instead.",
|
||||||
|
"The workspace associated with your user is scheduled for deletion and cannot at accessed at this time.": "The workspace associated with your user is scheduled for deletion and cannot at accessed at this time.",
|
||||||
"The workspace you authenticated with is not authorized on this installation. Try another?": "The workspace you authenticated with is not authorized on this installation. Try another?",
|
"The workspace you authenticated with is not authorized on this installation. Try another?": "The workspace you authenticated with is not authorized on this installation. Try another?",
|
||||||
"We could not read the user info supplied by your identity provider.": "We could not read the user info supplied by your identity provider.",
|
"We could not read the user info supplied by your identity provider.": "We could not read the user info supplied by your identity provider.",
|
||||||
"Your account uses email sign-in, please sign-in with email to continue.": "Your account uses email sign-in, please sign-in with email to continue.",
|
"Your account uses email sign-in, please sign-in with email to continue.": "Your account uses email sign-in, please sign-in with email to continue.",
|
||||||
@@ -751,6 +752,7 @@
|
|||||||
"Settings saved": "Settings saved",
|
"Settings saved": "Settings saved",
|
||||||
"Logo updated": "Logo updated",
|
"Logo updated": "Logo updated",
|
||||||
"Unable to upload new logo": "Unable to upload new logo",
|
"Unable to upload new logo": "Unable to upload new logo",
|
||||||
|
"Delete workspace": "Delete workspace",
|
||||||
"These settings affect the way that your knowledge base appears to everyone on the team.": "These settings affect the way that your knowledge base appears to everyone on the team.",
|
"These settings affect the way that your knowledge base appears to everyone on the team.": "These settings affect the way that your knowledge base appears to everyone on the team.",
|
||||||
"Display": "Display",
|
"Display": "Display",
|
||||||
"The logo is displayed at the top left of the application.": "The logo is displayed at the top left of the application.",
|
"The logo is displayed at the top left of the application.": "The logo is displayed at the top left of the application.",
|
||||||
@@ -768,6 +770,8 @@
|
|||||||
"Choose a subdomain to enable a login page just for your team.": "Choose a subdomain to enable a login page just for your team.",
|
"Choose a subdomain to enable a login page just for your team.": "Choose a subdomain to enable a login page just for your team.",
|
||||||
"Start view": "Start view",
|
"Start view": "Start view",
|
||||||
"This is the screen that workspace members will first see when they sign in.": "This is the screen that workspace members will first see when they sign in.",
|
"This is the screen that workspace members will first see when they sign in.": "This is the screen that workspace members will first see when they sign in.",
|
||||||
|
"Danger": "Danger",
|
||||||
|
"You can delete this entire workspace including collections, documents, and users.": "You can delete this entire workspace including collections, documents, and users.",
|
||||||
"Export data": "Export data",
|
"Export data": "Export data",
|
||||||
"Export deleted": "Export deleted",
|
"Export deleted": "Export deleted",
|
||||||
"A full export might take some time, consider exporting a single document or collection. The exported data is a zip of your documents in Markdown format. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "A full export might take some time, consider exporting a single document or collection. The exported data is a zip of your documents in Markdown format. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.",
|
"A full export might take some time, consider exporting a single document or collection. The exported data is a zip of your documents in Markdown format. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "A full export might take some time, consider exporting a single document or collection. The exported data is a zip of your documents in Markdown format. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.",
|
||||||
@@ -865,6 +869,9 @@
|
|||||||
"You can globally enable and disable public document sharing in the <em>security settings</em>.": "You can globally enable and disable public document sharing in the <em>security settings</em>.",
|
"You can globally enable and disable public document sharing in the <em>security settings</em>.": "You can globally enable and disable public document sharing in the <em>security settings</em>.",
|
||||||
"Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.": "Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.",
|
"Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.": "Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.",
|
||||||
"Zapier is a platform that allows {{appName}} to easily integrate with thousands of other business tools. Automate your workflows, sync data, and more.": "Zapier is a platform that allows {{appName}} to easily integrate with thousands of other business tools. Automate your workflows, sync data, and more.",
|
"Zapier is a platform that allows {{appName}} to easily integrate with thousands of other business tools. Automate your workflows, sync data, and more.": "Zapier is a platform that allows {{appName}} to easily integrate with thousands of other business tools. Automate your workflows, sync data, and more.",
|
||||||
|
"A confirmation code has been sent to your email address, please enter the code below to permanantly destroy this workspace.": "A confirmation code has been sent to your email address, please enter the code below to permanantly destroy this workspace.",
|
||||||
|
"Confirmation code": "Confirmation code",
|
||||||
|
"Deleting the <1>{{workspaceName}}</1> workspace will destroy all collections, documents, users, and associated data. You will be immediately logged out of {{appName}}.": "Deleting the <1>{{workspaceName}}</1> workspace will destroy all collections, documents, users, and associated data. You will be immediately logged out of {{appName}}.",
|
||||||
"Your are creating a new workspace using your current account — <em>{{email}}</em>": "Your are creating a new workspace using your current account — <em>{{email}}</em>",
|
"Your are creating a new workspace using your current account — <em>{{email}}</em>": "Your are creating a new workspace using your current account — <em>{{email}}</em>",
|
||||||
"Workspace name": "Workspace name",
|
"Workspace name": "Workspace name",
|
||||||
"When your new workspace is created, you will be the admin, meaning you will have the highest level of permissions and the ability to invite others.": "When your new workspace is created, you will be the admin, meaning you will have the highest level of permissions and the ability to invite others.",
|
"When your new workspace is created, you will be the admin, meaning you will have the highest level of permissions and the ability to invite others.": "When your new workspace is created, you will be the admin, meaning you will have the highest level of permissions and the ability to invite others.",
|
||||||
@@ -873,9 +880,8 @@
|
|||||||
"You can create templates to help your team create consistent and accurate documentation.": "You can create templates to help your team create consistent and accurate documentation.",
|
"You can create templates to help your team create consistent and accurate documentation.": "You can create templates to help your team create consistent and accurate documentation.",
|
||||||
"Trash is empty at the moment.": "Trash is empty at the moment.",
|
"Trash is empty at the moment.": "Trash is empty at the moment.",
|
||||||
"A confirmation code has been sent to your email address, please enter the code below to permanantly destroy your account.": "A confirmation code has been sent to your email address, please enter the code below to permanantly destroy your account.",
|
"A confirmation code has been sent to your email address, please enter the code below to permanantly destroy your account.": "A confirmation code has been sent to your email address, please enter the code below to permanantly destroy your account.",
|
||||||
"<em>Note:</em> Signing back in will cause a new account to be automatically reprovisioned.": "<em>Note:</em> Signing back in will cause a new account to be automatically reprovisioned.",
|
|
||||||
"Are you sure? Deleting your account will destroy identifying data associated with your user and cannot be undone. You will be immediately logged out of {{appName}} and all your API tokens will be revoked.": "Are you sure? Deleting your account will destroy identifying data associated with your user and cannot be undone. You will be immediately logged out of {{appName}} and all your API tokens will be revoked.",
|
"Are you sure? Deleting your account will destroy identifying data associated with your user and cannot be undone. You will be immediately logged out of {{appName}} and all your API tokens will be revoked.": "Are you sure? Deleting your account will destroy identifying data associated with your user and cannot be undone. You will be immediately logged out of {{appName}} and all your API tokens will be revoked.",
|
||||||
"Delete My Account": "Delete My Account",
|
"Delete my account": "Delete my account",
|
||||||
"Today": "Today",
|
"Today": "Today",
|
||||||
"Yesterday": "Yesterday",
|
"Yesterday": "Yesterday",
|
||||||
"Last week": "Last week",
|
"Last week": "Last week",
|
||||||
|
|||||||
Reference in New Issue
Block a user