add dleete image projects

This commit is contained in:
Phuoc Nguyen
2025-11-28 13:47:47 +07:00
parent 6e7e848ad6
commit ed6cc4cebc
6 changed files with 300 additions and 39 deletions

View File

@@ -54,4 +54,12 @@ abstract class SubmissionsRepository {
required String projectName,
required String filePath,
});
/// Delete a file from a project submission
/// [fileId] is the file ID to delete
/// [projectName] is the project name (docname)
Future<void> deleteProjectFile({
required String fileId,
required String projectName,
});
}