mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-27 17:45:40 -05:00
Remove extra require and minor cleanup
This commit is contained in:
parent
83248f039c
commit
bc3b0645ea
1 changed files with 2 additions and 4 deletions
|
@ -5,7 +5,6 @@ async = require 'async'
|
|||
errors = require '../commons/errors'
|
||||
aws = require 'aws-sdk'
|
||||
db = require './../routes/db'
|
||||
mongoose = require 'mongoose'
|
||||
queues = require '../commons/queue'
|
||||
LevelSession = require '../levels/sessions/LevelSession'
|
||||
Level = require '../levels/Level'
|
||||
|
@ -21,7 +20,7 @@ module.exports.setup = (app) -> connectToScoringQueue()
|
|||
connectToScoringQueue = ->
|
||||
queues.initializeQueueClient ->
|
||||
queues.queueClient.registerQueue 'scoring', {}, (error, data) ->
|
||||
if error? then throw new Error "There was an error registering the scoring queue: #{error}"
|
||||
if error? then throw new Error "There was an error registering the scoring queue: #{error}"
|
||||
scoringTaskQueue = data
|
||||
log.info 'Connected to scoring task queue!'
|
||||
|
||||
|
@ -125,7 +124,7 @@ module.exports.getTwoGames = (req, res) ->
|
|||
#if userIsAnonymous req then return errors.unauthorized(res, 'You need to be logged in to get games.')
|
||||
humansGameID = req.body.humansGameID
|
||||
ogresGameID = req.body.ogresGameID
|
||||
ladderGameIDs = ['greed','criss-cross','brawlwood','dungeon-arena','gold-rush']
|
||||
ladderGameIDs = ['greed', 'criss-cross', 'brawlwood', 'dungeon-arena', 'gold-rush']
|
||||
levelID = _.sample ladderGameIDs
|
||||
unless ogresGameID and humansGameID
|
||||
#fetch random games here
|
||||
|
@ -546,7 +545,6 @@ saveNewScoresToDatabase = (newScoreArray, callback) ->
|
|||
#log.info 'Saved new scores to database'
|
||||
callback err, newScoreArray
|
||||
|
||||
|
||||
updateScoreInSession = (scoreObject, callback) ->
|
||||
LevelSession.findOne {'_id': scoreObject.id}, (err, session) ->
|
||||
if err? then return callback err, null
|
||||
|
|
Loading…
Reference in a new issue