mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 08:38:09 -05:00
c7a7a9d3ac
Will update /teachers soon with relevant information, but at the moment it is too outdated.
12 lines
380 B
CoffeeScript
12 lines
380 B
CoffeeScript
RootView = require 'views/core/RootView'
|
|
template = require 'templates/teachers'
|
|
|
|
module.exports = class TeachersView extends RootView
|
|
id: 'teachers-view'
|
|
template: template
|
|
|
|
constructor: ->
|
|
super()
|
|
|
|
# Redirect to HoC version of /courses/teachers until we update the /teachers landing page
|
|
application.router.navigate "/courses/teachers?hoc=true", trigger: true
|