feat: delete a user

This commit is contained in:
NGPixel
2019-12-22 16:08:18 -05:00
parent 3b347f262c
commit f09f1f4f1e
7 changed files with 135 additions and 21 deletions

View File

@@ -0,0 +1,8 @@
key: openapiCore
title: Core
description: Basic OpenAPI Parser
author: requarks.io
input: openapi
output: html
icon: mdi-api
props: {}

View File

@@ -0,0 +1,14 @@
const _ = require('lodash')
module.exports = {
async render() {
let output = this.input
for (let child of this.children) {
const renderer = require(`../${_.kebabCase(child.key)}/renderer.js`)
output = await renderer.init(output, child.config)
}
return output
}
}