░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/app/serializers/lti/ims
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: results_serializer.rb
# frozen_string_literal: true # # Copyright (C) 2018 - 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/>. # module Lti::IMS class ResultsSerializer def initialize(result, li_url) @result = result @li_url = li_url end def as_json { id: "#{li_url}/results/#{result.id}", scoreOf: li_url, userId: result.user.lti_id, resultScore: result.result_score, resultMaximum: result.result_maximum, comment: result.comment }.merge(result.extensions).compact end private attr_reader :result, :li_url end end
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 line_items_serializer.rb
RB
1.4 KB
2023-09-24 03:36
EDIT
📄 names_and_roles_serializer.rb
RB
5.8 KB
2023-09-24 03:39
EDIT
📄 results_serializer.rb
RB
1.2 KB
2023-09-24 03:36
EDIT