mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-27 17:45:40 -05:00
300c81e72b
* Restrict patch handling properly * Fix #3860, CS 2 description * i18nCoverage is updated when new translations are auto-accepted * Course patches are listed on PendingPatchesView properly * 'Artisan' permission allows editing course translations
23 lines
743 B
CoffeeScript
23 lines
743 B
CoffeeScript
|
|
mongoose = require 'mongoose'
|
|
Handler = require '../commons//Handler'
|
|
Course = require '../models/Course'
|
|
|
|
# TODO: Refactor PatchHandler.setStatus into its own route.
|
|
# This handler has been resurrected solely so that course patches can be accepted.
|
|
|
|
CourseHandler = class CourseHandler extends Handler
|
|
modelClass: Course
|
|
jsonSchema: require '../../app/schemas/models/course.schema'
|
|
allowedMethods: []
|
|
|
|
hasAccess: (req) ->
|
|
req.method in @allowedMethods or req.user?.isAdmin()
|
|
|
|
hasAccessToDocument: (req, document, method=null) ->
|
|
method = (method or req.method).toLowerCase()
|
|
return true if method is 'get'
|
|
return true if req.user?.isAdmin() or req.user?.isArtisan()
|
|
return
|
|
|
|
module.exports = new CourseHandler()
|