mirror of
				https://github.com/scinote-eln/scinote-web.git
				synced 2025-10-29 23:46:32 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			303 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			303 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| module Api
 | |
|   module V1
 | |
|     class FormResponseSerializer < ActiveModel::Serializer
 | |
|       type :form_responses
 | |
|       attributes :id, :position
 | |
| 
 | |
|       include TimestampableModel
 | |
| 
 | |
|       def position
 | |
|         object&.step_orderable_element&.position
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| end
 |