1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-03 22:37:35 +02:00
joplin/ReactNativeClient/lib/folders-screen-utils.js
2018-03-09 17:49:35 +00:00

15 lines
311 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 };