nextcloud/apps/files/src/models/SanitizeFilenameStatus.ts
Ferdinand Thiessen a42bd7a507
refactor: add enum for filename sanitization also in the frontend
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2025-09-02 11:01:53 +02:00

15 lines
294 B
TypeScript

/*!
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/**
* The current status of the filename sanitization
*/
export enum SanitizeFilenameStatus {
Unknown = 0,
Scheduled = 1,
Running = 2,
Done = 3,
Error = 4,
}