Gives a new position to a file within its package. :param fid: file id :param position:
(self, fid, position)
| 713 | |
| 714 | @permission(PERMS.MODIFY) |
| 715 | def orderFile(self, fid, position): |
| 716 | """Gives a new position to a file within its package. |
| 717 | |
| 718 | :param fid: file id |
| 719 | :param position: |
| 720 | """ |
| 721 | self.core.files.reorderFile(fid, position) |
| 722 | |
| 723 | @permission(PERMS.MODIFY) |
| 724 | def setPackageData(self, pid, data): |
nothing calls this directly
no test coverage detected