mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-12 10:55:51 +02:00
feat: add a option to select a acme user when obtaining a certificate.
This commit is contained in:
parent
e77d37bbaa
commit
f0dcd67004
8 changed files with 186 additions and 2 deletions
|
@ -1,6 +1,7 @@
|
|||
import type { ModelBase } from '@/api/curd'
|
||||
import Curd from '@/api/curd'
|
||||
import type { DnsCredential } from '@/api/dns_credential'
|
||||
import type { AcmeUser } from '@/api/acme_user'
|
||||
|
||||
export interface Cert extends ModelBase {
|
||||
name: string
|
||||
|
@ -14,6 +15,8 @@ export interface Cert extends ModelBase {
|
|||
challenge_method: string
|
||||
dns_credential_id: number
|
||||
dns_credential?: DnsCredential
|
||||
acme_user_id: number
|
||||
acme_user?: AcmeUser
|
||||
key_type: string
|
||||
log: string
|
||||
certificate_info: CertificateInfo
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue