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

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

export default class UrlField extends AbstractField {

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