Files
codeocean/app/models/error_template_attribute.rb
2018-11-06 16:46:00 +01:00

8 lines
134 B
Ruby

class ErrorTemplateAttribute < ApplicationRecord
has_and_belongs_to_many :error_template
def to_s
"#{id} [#{key}]"
end
end