Files
codeocean/app/models/exercise_collection.rb
Maximilian Grundke f0c0621b31 Implement show route
2017-09-27 16:52:42 +02:00

9 lines
186 B
Ruby

class ExerciseCollection < ActiveRecord::Base
has_and_belongs_to_many :exercises
def to_s
"#{I18n.t('activerecord.models.exercise_collection.one')}: #{name} (#{id})"
end
end