file controller
This commit is contained in:
parent
199a82ff0c
commit
0371af3344
21 changed files with 440 additions and 280 deletions
ui/lib/api
|
@ -94,7 +94,7 @@ type Torrent {
|
|||
bytesCompleted: Int!
|
||||
torrentFilePath: String!
|
||||
bytesMissing: Int!
|
||||
priority: TorrentPriority! @resolver
|
||||
priority: TorrentPriority!
|
||||
files: [TorrentFile!]! @resolver
|
||||
excludedFiles: [TorrentFile!]! @resolver
|
||||
peers: [TorrentPeer!]! @resolver
|
||||
|
@ -116,6 +116,7 @@ type TorrentFile {
|
|||
filename: String!
|
||||
size: Int!
|
||||
bytesCompleted: Int!
|
||||
priority: TorrentPriority! @resolver
|
||||
}
|
||||
type TorrentFileEntry implements File & FsEntry {
|
||||
name: String!
|
||||
|
@ -138,7 +139,6 @@ enum TorrentPriority {
|
|||
NORMAL
|
||||
HIGH
|
||||
READAHEAD
|
||||
NEXT
|
||||
NOW
|
||||
}
|
||||
input TorrentPriorityFilter @oneOf {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue