mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-28 10:06:08 -05:00
16 lines
310 B
CoffeeScript
16 lines
310 B
CoffeeScript
|
UserView = require 'views/kinds/UserView'
|
||
|
template = require 'templates/user/home'
|
||
|
{me} = require 'lib/auth'
|
||
|
|
||
|
module.exports = class UserHomeView extends UserView
|
||
|
id: 'user-home-view'
|
||
|
template: template
|
||
|
|
||
|
constructor: (options) ->
|
||
|
super options
|
||
|
|
||
|
getRenderData: ->
|
||
|
context = super()
|
||
|
context
|
||
|
|