Class: Decidim::DownloadYourDataSerializers::DownloadYourDataFollowSerializer
- Inherits:
 - 
      Exporters::Serializer
      
        
- Object
 - Exporters::Serializer
 - Decidim::DownloadYourDataSerializers::DownloadYourDataFollowSerializer
 
 
- Includes:
 - ResourceHelper
 
- Defined in:
 - lib/decidim/download_your_data_serializers/download_your_data_follow_serializer.rb
 
Instance Attribute Summary
Attributes inherited from Exporters::Serializer
Instance Method Summary collapse
- 
  
    
      #serialize  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Public: Exports a hash with the serialized data for follow.
 
Methods included from ResourceHelper
#linked_classes_filter_values_for, #linked_classes_for, #resource_locator
Methods inherited from Exporters::Serializer
#event_name, #finalize, #initialize, #run
Constructor Details
This class inherits a constructor from Decidim::Exporters::Serializer
Instance Method Details
#serialize ⇒ Object
Public: Exports a hash with the serialized data for follow.
      10 11 12 13 14 15 16 17 18 19 20  | 
    
      # File 'lib/decidim/download_your_data_serializers/download_your_data_follow_serializer.rb', line 10 def serialize { id: resource.id, followable: { id: resource.decidim_followable_id, type: resource.decidim_followable_type }, created_at: resource.created_at, updated_at: resource.updated_at } end  |