소스 검색

Fixed issues in express handler

Cameron Kline 8 년 전
부모
커밋
0a489b460b
1개의 변경된 파일5개의 추가작업 그리고 5개의 파일을 삭제
  1. 5 5
      logic/expressHandler.js

+ 5 - 5
logic/expressHandler.js

@@ -1,27 +1,27 @@
 'use strict';
 
-module.exports = function (base, io) {//TODO Rename base to core
+module.exports = function (core, app) {
 
 	app.post('/login', function (user) {
-		base.login(user, function (result) {
+		core.login(user, function (result) {
 			res.send(JSON.stringify(result));
 		});
 	});
 
 	app.post('/register', function (user) {
-		base.register(user, function (result) {
+		core.register(user, function (result) {
 			res.send(JSON.stringify(result));
 		});
 	});
 
 	app.get('/rooms', function () {
-		base.rooms(function (result) {
+		core.rooms(function (result) {
 			res.send(JSON.stringify(result));
 		});
 	});
 
 	app.get('/search/:query', function () {//TODO Replace search with a better name.
-		base.search(query, function (result) {
+		core.search(query, function (result) {
 			res.send(JSON.stringify(result));
 		});
 	});