xml quick export

This commit is contained in:
Jan Prochazka
2022-02-17 17:06:28 +01:00
parent 256f97ad42
commit f8da3c3476
2 changed files with 19 additions and 3 deletions

View File

@@ -30,5 +30,19 @@ const fileFormat = {
export default {
fileFormats: [fileFormat],
quickExports: [
{
label: 'XML file',
extension: 'xml',
createWriter: (fileName) => ({
functionName: 'writer@dbgate-plugin-xml',
props: {
fileName,
},
}),
},
],
};