Files
codeocean/app/models/error_template_attribute.rb
2017-07-12 11:58:18 +02:00

8 lines
135 B
Ruby

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