Moved isOfficial under caproverOneClickApp property
This commit is contained in:
parent
7bab4b4afc
commit
090e2473bd
|
|
@ -30,5 +30,6 @@ caproverOneClickApp:
|
|||
end: |-
|
||||
PrivateBin has been successfully deployed!
|
||||
displayName: PrivateBin
|
||||
isOfficial: true
|
||||
description: A minimalist, open source online pastebin where the server has zero knowledge of pasted data. Data is encrypted/decrypted in the browser using 256 bits AES.
|
||||
documentation: See https://github.com/PrivateBin/docker-nginx-fpm-alpine
|
||||
|
|
|
|||
|
|
@ -79,13 +79,14 @@ function convertV2toV4(v2String) {
|
|||
|
||||
parsed.services = parsed.dockerCompose.services;
|
||||
parsed.dockerCompose = undefined;
|
||||
|
||||
|
||||
parsed.captainVersion = 4;
|
||||
parsed.caproverOneClickApp = {};
|
||||
|
||||
moveProperty('variables');
|
||||
moveProperty('instructions');
|
||||
moveProperty('displayName');
|
||||
moveProperty('isOfficial');
|
||||
moveProperty('description');
|
||||
moveProperty('documentation');
|
||||
|
||||
|
|
|
|||
|
|
@ -92,6 +92,7 @@ function convertV4toV2(v4String) {
|
|||
moveProperty('variables');
|
||||
moveProperty('instructions');
|
||||
moveProperty('displayName');
|
||||
moveProperty('isOfficial');
|
||||
moveProperty('description');
|
||||
moveProperty('documentation');
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue