Files
codeocean/app/models/error_template.rb
2017-07-12 11:11:32 +02:00

9 lines
174 B
Ruby

class ErrorTemplate < ActiveRecord::Base
belongs_to :execution_environment
has_and_belongs_to_many :error_template_attributes
def to_s
"#{id} [#{name}]"
end
end