mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-03 08:35:29 +02:00
22 lines
369 B
JavaScript
22 lines
369 B
JavaScript
const Folder = require('lib/models/Folder.js');
|
|
|
|
class FoldersScreenUtils {
|
|
|
|
static async refreshFolders() {
|
|
let initialFolders = await Folder.all({
|
|
includeConflictFolder: true,
|
|
order: [{
|
|
by: "title",
|
|
dir: "asc"
|
|
}]
|
|
});
|
|
|
|
this.dispatch({
|
|
type: 'FOLDER_UPDATE_ALL',
|
|
items: initialFolders,
|
|
});
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = { FoldersScreenUtils }; |