aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar MCMXC <16797721+mcmxcdev@users.noreply.github.com>2023-07-30 11:30:22 -0600
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2023-07-30 23:57:51 +0000
commitc58eb4714d1dde9f3d96038bb73204f766d2708c (patch)
treefaccf60fe1031169e3703ec3fd851a2a6ad811fb /src
parent- convert require statement to dynamic import in index.ts (diff)
downloadferdium-app-c58eb4714d1dde9f3d96038bb73204f766d2708c.tar.gz
ferdium-app-c58eb4714d1dde9f3d96038bb73204f766d2708c.tar.zst
ferdium-app-c58eb4714d1dde9f3d96038bb73204f766d2708c.zip
remove unused parameter in UserController.js which fails linting
Diffstat (limited to 'src')
-rw-r--r--src/internal-server/app/Controllers/Http/UserController.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/internal-server/app/Controllers/Http/UserController.js b/src/internal-server/app/Controllers/Http/UserController.js
index 943d7705e..89ccd1549 100644
--- a/src/internal-server/app/Controllers/Http/UserController.js
+++ b/src/internal-server/app/Controllers/Http/UserController.js
@@ -224,7 +224,7 @@ class UserController {
224 } 224 }
225 225
226 // Account import/export 226 // Account import/export
227 async export({ _auth, response }) { 227 async export({ response }) {
228 const allServices = await Service.all(); 228 const allServices = await Service.all();
229 const services = allServices.toJSON(); 229 const services = allServices.toJSON();
230 const allWorkspaces = await Workspace.all(); 230 const allWorkspaces = await Workspace.all();