JSDoc, closes #5874
This commit is contained in:
@@ -19,7 +19,6 @@ describe("CleanupExpiredFileOperationsTask", () => {
|
||||
state: FileOperationState.Complete,
|
||||
});
|
||||
|
||||
/* This is a test helper that creates a new task and runs it. */
|
||||
const task = new CleanupExpiredFileOperationsTask();
|
||||
await task.perform({ limit: 100 });
|
||||
|
||||
|
||||
@@ -19,7 +19,6 @@ describe("ErrorTimedOutFileOperationsTask", () => {
|
||||
state: FileOperationState.Complete,
|
||||
});
|
||||
|
||||
/* This is a test helper that creates a new task and runs it. */
|
||||
const task = new ErrorTimedOutFileOperationsTask();
|
||||
await task.perform({ limit: 100 });
|
||||
|
||||
|
||||
@@ -4,9 +4,9 @@ import FileStorage from "@server/storage/files";
|
||||
import BaseTask, { TaskPriority } from "./BaseTask";
|
||||
|
||||
type Props = {
|
||||
/* The teamId to operate on */
|
||||
/** The teamId to operate on */
|
||||
teamId: string;
|
||||
/* The original avatarUrl from the SSO provider */
|
||||
/** The original avatarUrl from the SSO provider */
|
||||
avatarUrl: string;
|
||||
};
|
||||
|
||||
|
||||
@@ -4,9 +4,9 @@ import FileStorage from "@server/storage/files";
|
||||
import BaseTask, { TaskPriority } from "./BaseTask";
|
||||
|
||||
type Props = {
|
||||
/* The userId to operate on */
|
||||
/** The userId to operate on */
|
||||
userId: string;
|
||||
/* The original avatarUrl from the SSO provider */
|
||||
/** The original avatarUrl from the SSO provider */
|
||||
avatarUrl: string;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user