]> git.proxmox.com Git - proxmox-widget-toolkit.git/blob - src/data/model/ACME.js
add ACME related data models
[proxmox-widget-toolkit.git] / src / data / model / ACME.js
1 Ext.define('proxmox-acme-accounts', {
2 extend: 'Ext.data.Model',
3 fields: ['name'],
4 proxy: {
5 type: 'proxmox',
6 },
7 idProperty: 'name',
8 });
9
10 Ext.define('proxmox-acme-challenges', {
11 extend: 'Ext.data.Model',
12 fields: ['id', 'type', 'schema'],
13 proxy: {
14 type: 'proxmox',
15 },
16 idProperty: 'id',
17 });
18
19
20 Ext.define('proxmox-acme-plugins', {
21 extend: 'Ext.data.Model',
22 fields: ['type', 'plugin', 'api'],
23 proxy: {
24 type: 'proxmox',
25 },
26 idProperty: 'plugin',
27 });