mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-07 23:44:55 +08:00
33 lines
952 B
Ruby
33 lines
952 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Activity < ApplicationRecord
|
|
enum type_of: Extends::ACTIVITY_TYPES
|
|
|
|
belongs_to :owner, inverse_of: :activities, class_name: 'User'
|
|
belongs_to :subject, polymorphic: true, optional: true
|
|
|
|
# For permissions check
|
|
belongs_to :project, inverse_of: :activities, optional: true
|
|
belongs_to :team, inverse_of: :activities
|
|
|
|
# Associations for old activity type
|
|
belongs_to :experiment, inverse_of: :activities, optional: true
|
|
belongs_to :my_module, inverse_of: :activities, optional: true
|
|
|
|
validate :activity_version
|
|
validates :type_of, :owner, presence: true
|
|
validates :subject_type, inclusion: { in: Extends::ACTIVITY_SUBJECT_TYPES,
|
|
allow_blank: true }
|
|
|
|
def old_activity?
|
|
subject.nil?
|
|
end
|
|
|
|
private
|
|
|
|
def activity_version
|
|
if (experiment || my_module) && subject
|
|
errors.add(:activity, 'wrong combination of associations')
|
|
end
|
|
end
|
|
end
|