░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/app/serializers/canvas
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: api_serialization.rb
# frozen_string_literal: true # # Copyright (C) 2014 - 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 Canvas module APISerialization def stringify!(hash) return hash unless stringify_ids? StringifyIds.stringify_ids(hash) if (links = hash["links"]).present? links.each do |key, value| next if value.nil? links[key] = value.is_a?(Array) ? value.map(&:to_s) : value.to_s end end hash end def stringify_ids? true end end end
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 api_array_serializer.rb
RB
1.3 KB
2023-09-24 03:39
EDIT
📄 api_serialization.rb
RB
1.1 KB
2023-09-24 03:36
EDIT
📄 api_serializer.rb
RB
8.6 KB
2023-09-24 03:39
EDIT