[Source]
# File app/models/question.rb, line 13 13: def self.human_attribute_name(attribute_key_name) 14: if attribute_key_name.to_sym == :name 15: "Step 2" 16: elsif attribute_key_name.to_sym == :question_text 17: "Step 1" 18: else 19: super 20: end 21: end
[Validate]