aboutsummaryrefslogtreecommitdiffstats
path: root/app/Controllers/Http/WorkspaceController.js
diff options
context:
space:
mode:
authorLibravatar Bennett <hello@vantezzen.io>2020-03-10 15:07:46 +0100
committerLibravatar Bennett <hello@vantezzen.io>2020-03-10 15:07:46 +0100
commit0ecb26fcc0d1358efeafc1512dfb67ac6695382b (patch)
treea5262bfb9de442890c6892e108ff94ecceccae2e /app/Controllers/Http/WorkspaceController.js
parentUpdate demo url (diff)
downloadferdium-server-0ecb26fcc0d1358efeafc1512dfb67ac6695382b.tar.gz
ferdium-server-0ecb26fcc0d1358efeafc1512dfb67ac6695382b.tar.zst
ferdium-server-0ecb26fcc0d1358efeafc1512dfb67ac6695382b.zip
Fix lint
Diffstat (limited to 'app/Controllers/Http/WorkspaceController.js')
-rw-r--r--app/Controllers/Http/WorkspaceController.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controllers/Http/WorkspaceController.js b/app/Controllers/Http/WorkspaceController.js
index dc02e44..7be0e5b 100644
--- a/app/Controllers/Http/WorkspaceController.js
+++ b/app/Controllers/Http/WorkspaceController.js
@@ -168,7 +168,7 @@ class WorkspaceController {
168 id: workspace.workspaceId, 168 id: workspace.workspaceId,
169 name: workspace.name, 169 name: workspace.name,
170 order: workspace.order, 170 order: workspace.order,
171 services: typeof workspace.services === "string" ? JSON.parse(workspace.services) : workspace.services, 171 services: typeof workspace.services === 'string' ? JSON.parse(workspace.services) : workspace.services,
172 userId: auth.user.id, 172 userId: auth.user.id,
173 })); 173 }));
174 } 174 }