joplin/ReactNativeClient/lib/folders-screen-utils.js

16 lines
312 B
JavaScript

const Folder = require('lib/models/Folder.js');
class FoldersScreenUtils {
static async refreshFolders() {
let initialFolders = await Folder.all({ includeConflictFolder: true });
this.dispatch({
type: 'FOLDER_UPDATE_ALL',
items: initialFolders,
});
}
}
module.exports = { FoldersScreenUtils };