Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
lib
/
Filename :
checkpoint.rb
back
Copy
# frozen_string_literal: true # # Copyright (C) 2023 - present Instructure, Inc. # # This file is part of Canvas. # # Canvas is free software: you can redistribute it and/or modify it under # the terms of the GNU Affero General Public License as published by the Free # Software Foundation, version 3 of the License. # # Canvas is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU Affero General Public License for more # details. # # You should have received a copy of the GNU Affero General Public License along # with this program. If not, see <http://www.gnu.org/licenses/>. # class Checkpoint include Api::V1::AssignmentOverride def initialize(assignment, user) @assignment = assignment @user = user end def as_json { name:, tag:, points_possible:, due_at:, only_visible_to_overrides:, overrides: } end private def name @assignment.name end def tag @assignment.sub_assignment_tag end def points_possible @assignment.points_possible end def due_at @assignment.due_at end def only_visible_to_overrides @assignment.only_visible_to_overrides end def overrides @assignment.grants_right?(@user, :update) ? assignment_overrides_json(@assignment.assignment_overrides.select(&:active?), @user) : [] end def session nil end end