blob: e4e9baac4c8cd31cb448234f3b7b9182b65ac7fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# frozen_string_literal: true
module Ml
class Experiment < ApplicationRecord
include AtomicInternalId
validates :name, :project, presence: true
validates :name, uniqueness: { scope: :project, message: "should be unique in the project" }
belongs_to :project
belongs_to :user
has_many :candidates, class_name: 'Ml::Candidate'
has_internal_id :iid, scope: :project
def artifact_location
'not_implemented'
end
class << self
def by_project_id_and_iid(project_id, iid)
find_by(project_id: project_id, iid: iid)
end
def by_project_id_and_name(project_id, name)
find_by(project_id: project_id, name: name)
end
def has_record?(project_id, name)
where(project_id: project_id, name: name).exists?
end
end
end
end
|