Files
codeocean/app/models/error_template.rb
2021-05-14 22:03:06 +02:00

11 lines
191 B
Ruby

# frozen_string_literal: true
class ErrorTemplate < ApplicationRecord
belongs_to :execution_environment
has_and_belongs_to_many :error_template_attributes
def to_s
name
end
end