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

9 lines
173 B
Ruby

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