Welcome to mirror list, hosted at ThFree Co, Russian Federation.

FolderRepository.js « Repositories « src - git.mdns.eu/nextcloud/passwords-client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 18302935a0b5cc6419fb422d249628c18bc4540e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import AbstractRepository from './AbstractRepository';

export default class FolderRepository extends AbstractRepository {

    /**
     * @return {String[]}
     * @constructor
     */
    get AVAILABLE_DETAIL_LEVELS() {
        return ['id', 'model', 'revisions', 'parent', 'passwords', 'folders'];
    }

    /**
     * @returns {String}
     * @constructor
     */
    get TYPE() {
        return 'folder';
    }
}