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

10 lines
152 B
Ruby

# frozen_string_literal: true
class ErrorTemplateAttribute < ApplicationRecord
has_and_belongs_to_many :error_template
def to_s
key
end
end