forked from engineering/cloudservices
Update src/commands/cwg.ts
parent
0683424862
commit
0c9160a196
|
@ -126,12 +126,14 @@ export default class CWG extends Command {
|
|||
});
|
||||
this.client.signale.debug(resultID.data);
|
||||
const recordID = resultID.data.result[0].id;
|
||||
if (resultID.data.result[0]) {
|
||||
await axios({
|
||||
method: 'delete',
|
||||
url: `https://api.cloudflare.com/client/v4/zones/5e82fc3111ed4fbf9f58caa34f7553a7/dns_records/${recordID}`,
|
||||
headers: { Authorization: `Bearer ${this.client.config.cloudflare}` },
|
||||
});
|
||||
}
|
||||
}
|
||||
await fs.unlink(`/etc/nginx/sites-available/${domain.domain}`);
|
||||
await fs.unlink(`/etc/nginx/sites-enabled/${domain.domain}`);
|
||||
await this.client.db.Domain.deleteOne({ domain: domain.domain });
|
||||
|
|
Loading…
Reference in New Issue