From 63fd2e6e093801dc4d569e23d1b326b2da8161f1 Mon Sep 17 00:00:00 2001 From: Fabian Jakobs Date: Tue, 9 Feb 2016 15:27:37 +0000 Subject: [PATCH] propagate information if the container was stopped --- plugins/c9.vfs.server/vfs.server.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/c9.vfs.server/vfs.server.js b/plugins/c9.vfs.server/vfs.server.js index f2da3e24..3be49599 100644 --- a/plugins/c9.vfs.server/vfs.server.js +++ b/plugins/c9.vfs.server/vfs.server.js @@ -128,8 +128,9 @@ function plugin(options, imports, register) { res.json({ pid: pid, uid: user.id, - readonly: entry.vfs.readonly, - vfsid: entry.vfsid + readonly: entry.vfs.readonly, + vfsid: entry.vfsid, + activation: entry.vfs.activation || {} }, null, 201); });