Pitu 6 lat temu
rodzic
commit
9cba85c47c

+ 5 - 0
src/api/routes/auth/loginPOST.js

@@ -20,6 +20,11 @@ class loginPOST extends Route {
 		if (!user) return res.status(401).json({ message: 'Invalid authorization' });
 
 		/*
+			Checks if the user is disabled
+		*/
+		if (!user.enabled) return res.status(401).json({ message: 'This account has been disabled' });
+
+		/*
 			Checks if the password is right
 		*/
 		const comparePassword = await bcrypt.compare(password, user.password);

+ 3 - 0
src/site/components/sidebar/Sidebar.vue

@@ -49,9 +49,12 @@
 			<router-link to="/dashboard/users">
 				<i class="icon-setting-gear-a" />Users
 			</router-link>
+			<!--
+			TODO: Dont wanna deal with this now
 			<router-link to="/dashboard/settings">
 				<i class="icon-setting-gear-a" />Settings
 			</router-link>
+			-->
 		</template>
 	</div>
 </template>