-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add get upload task info endpoint
- Loading branch information
Showing
5 changed files
with
58 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,4 +65,8 @@ class UploadTask { | |
*/ | ||
var allowUpload: Boolean = true | ||
|
||
/** | ||
* 合并完成 | ||
*/ | ||
var merged: Boolean = false | ||
} |
13 changes: 13 additions & 0 deletions
13
app/src/main/kotlin/com/akagiyui/drive/model/response/UploadTaskResponse.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.akagiyui.drive.model.response | ||
|
||
import com.akagiyui.drive.entity.cache.UploadTask | ||
|
||
/** | ||
* 上传任务信息响应 | ||
* @author AkagiYui | ||
*/ | ||
|
||
class UploadTaskResponse(task: UploadTask) { | ||
val id = task.id | ||
val merged = task.merged | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters