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

SecretField.js « CustomField « Model « src - git.mdns.eu/nextcloud/passwords-client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9c0e2a9d391d09b825c9eb15bcacc5f3dabaf020 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import AbstractField from './AbstractField';
import Properties from '../../Configuration/SecretField';

export default class SecretField extends AbstractField {

    /**
     *
     * @param {object} data
     */
    constructor(data) {
        data.type = 'secret';
        super(Properties, data);
    }
}