You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@age.apache.org by hb...@apache.org on 2022/09/19 08:08:04 UTC

[age-viewer] branch main updated: fix : correct spelling of database controller (#29)

This is an automated email from the ASF dual-hosted git repository.

hbshin pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/age-viewer.git


The following commit(s) were added to refs/heads/main by this push:
     new 89b472f  fix :  correct spelling of database controller (#29)
89b472f is described below

commit 89b472f9d61b0fd7ec626cfc2cd39c323fbdf88c
Author: Caleb Adewole Erioluwa <ca...@gmail.com>
AuthorDate: Mon Sep 19 09:08:00 2022 +0100

    fix :  correct spelling of database controller (#29)
---
 backend/src/controllers/databaseController.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/backend/src/controllers/databaseController.js b/backend/src/controllers/databaseController.js
index dd31d89..826102e 100644
--- a/backend/src/controllers/databaseController.js
+++ b/backend/src/controllers/databaseController.js
@@ -19,7 +19,7 @@
 const sessionService = require('../services/sessionService');
 const winston = require('winston');
 
-class DatabseController {
+class DatabaseController {
 
     async connectDatabase(req, res, next) {
         let databaseService = sessionService.get(req.sessionID);
@@ -91,4 +91,4 @@ class DatabseController {
     }
 }
 
-module.exports = DatabseController;
+module.exports = DatabaseController;