mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
25 lines
759 B
CoffeeScript
25 lines
759 B
CoffeeScript
RootView = require 'views/core/RootView'
|
|
template = require 'templates/admin/level_sessions'
|
|
LevelSession = require 'models/LevelSession'
|
|
CocoCollection = require 'collections/CocoCollection'
|
|
|
|
class LevelSessionCollection extends CocoCollection
|
|
url: '/db/level_session/x/active?project=screenshot,levelName,creatorName'
|
|
model: LevelSession
|
|
|
|
module.exports = class LevelSessionsView extends RootView
|
|
id: 'admin-level-sessions-view'
|
|
template: template
|
|
|
|
constructor: (options) ->
|
|
super options
|
|
@getLevelSessions()
|
|
|
|
getLevelSessions: ->
|
|
@sessions = @supermodel.loadCollection(new LevelSessionCollection(), 'sessions', {cache: false}).model
|
|
|
|
getRenderData: =>
|
|
c = super()
|
|
c.sessions = @sessions.models
|
|
c.moment = moment
|
|
c
|