mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-23 15:48:11 -05:00
ef0547f72a
In TeacherClassView, when a teacher assigns a paid course to any unenrolled student, the view automatically enrolls those students, rather than requiring the teacher to enroll those students manually first. Update copy throughout. Also add back (smaller) padding to progress dots in TeacherClassView.
61 lines
1.6 KiB
CoffeeScript
61 lines
1.6 KiB
CoffeeScript
CocoModel = require './CocoModel'
|
|
schema = require 'schemas/models/course_instance.schema'
|
|
|
|
module.exports = class CourseInstance extends CocoModel
|
|
@className: 'CourseInstance'
|
|
@schema: schema
|
|
urlRoot: '/db/course_instance'
|
|
|
|
upsertForHOC: (opts) ->
|
|
options = {
|
|
url: _.result(@, 'url') + '/~/create-for-hoc'
|
|
type: 'POST'
|
|
}
|
|
_.extend options, opts
|
|
@fetch(options)
|
|
|
|
addMember: (userID, opts) ->
|
|
options = {
|
|
method: 'POST'
|
|
url: _.result(@, 'url') + '/members'
|
|
data: { userID: userID }
|
|
}
|
|
_.extend options, opts
|
|
@fetch options
|
|
if userID is me.id
|
|
unless me.get('courseInstances')
|
|
me.set('courseInstances', [])
|
|
me.get('courseInstances').push(@id)
|
|
|
|
addMembers: (userIDs, opts) ->
|
|
options = {
|
|
method: 'POST'
|
|
url: _.result(@, 'url') + '/members'
|
|
data: { userIDs }
|
|
success: =>
|
|
@trigger 'add-members', { userIDs }
|
|
}
|
|
_.extend options, opts
|
|
jqxhr = @fetch(options)
|
|
if me.id in userIDs
|
|
unless me.get('courseInstances')
|
|
me.set('courseInstances', [])
|
|
me.get('courseInstances').push(@id)
|
|
return jqxhr
|
|
|
|
removeMember: (userID, opts) ->
|
|
options = {
|
|
url: _.result(@, 'url') + '/members'
|
|
type: 'DELETE'
|
|
data: { userID: userID }
|
|
}
|
|
_.extend options, opts
|
|
@fetch(options)
|
|
me.set('courseInstances', _.without(me.get('courseInstances'), @id)) if userID is me.id
|
|
|
|
firstLevelURL: ->
|
|
"/play/level/dungeons-of-kithgard?course=#{@get('courseID')}&course-instance=#{@id}"
|
|
|
|
hasMember: (userID, opts) ->
|
|
userID = userID.id or userID
|
|
userID in @get('members')
|