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

PasswordRepository.js « Repositories « src - git.mdns.eu/nextcloud/passwords-client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e160cba0406e79a94f1cc52f7390bb12e6aa45de (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 PasswordRepository extends AbstractRepository {

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

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