Sha256: 1a0c85b10aa2ed96d13969381ccbec6f125be89420bb430da4861955527f6ffa
Contents?: true
Size: 587 Bytes
Versions: 25
Compression:
Stored size: 587 Bytes
Contents
# frozen_string_literal: true module Decidim # This class serializes a User so can be exported to CSV module DownloadYourDataSerializers class DownloadYourDataUserGroupSerializer < Decidim::Exporters::Serializer include Decidim::ResourceHelper # Public: Exports a hash with the serialized data for this user. def serialize { id: resource.id, name: resource.name, document_number: resource.document_number, phone: resource.phone, verified_at: resource.verified_at } end end end end
Version data entries
25 entries across 25 versions & 1 rubygems