| 67 | } |
| 68 | |
| 69 | bool FolderController::createFolder(QString name, QString color, QString icon, |
| 70 | QString description, QString parent) |
| 71 | { |
| 72 | auto success = m_folderService->createFolder(name, color, icon, description, |
| 73 | QUuid(parent)); |
| 74 | if(success && !parent.isEmpty()) |
| 75 | emit expandFolder(parent); |
| 76 | |
| 77 | return success; |
| 78 | } |
| 79 | |
| 80 | QVariantList FolderController::deleteFolder(QString uuid) |
| 81 | { |
nothing calls this directly
no outgoing calls
no test coverage detected