fix: packing app includes description

This commit is contained in:
Johann150 2022-07-26 15:28:25 +02:00
parent 225b56706d
commit bf16b3699e
Signed by untrusted user: Johann150
GPG key ID: 9EE6577A2A06F8F1

View file

@ -25,6 +25,7 @@ export const AppRepository = db.getRepository(App).extend({
return {
id: app.id,
name: app.name,
description: app.description,
callbackUrl: app.callbackUrl,
permission: app.permission,
...(opts.includeSecret ? { secret: app.secret } : {}),