returns dict with file information
(self, id)
| 276 | |
| 277 | #---------------------------------------------------------------------- |
| 278 | def getFileData(self, id): |
| 279 | """returns dict with file information""" |
| 280 | if id in self.cache: |
| 281 | return self.cache[id].toDbDict() |
| 282 | |
| 283 | return self.db.getLinkData(id) |
| 284 | |
| 285 | #---------------------------------------------------------------------- |
| 286 | def getFile(self, id): |
no test coverage detected