8
0
mirror of https://github.com/key-networks/ztncui.git synced 2024-08-31 04:28:00 +00:00

Add missing 'const'

This commit is contained in:
lideming
2020-12-03 00:37:16 +08:00
parent 5ad948b124
commit e0e84deb92
3 changed files with 7 additions and 7 deletions

View File

@@ -7,7 +7,7 @@
const argon2 = require('argon2');
const usersController = require('../controllers/usersController');
hash_check = async function(user, password) {
const hash_check = async function(user, password) {
let verified = false;
try {
var users = await usersController.get_users();