6 lines
101 B
Ruby
6 lines
101 B
Ruby
class MachineLearningInfo < ApplicationRecord
|
|
def self.for(kind)
|
|
find_by(kind: kind)
|
|
end
|
|
end
|