mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 17:36:33 +08:00
26 lines
877 B
Ruby
26 lines
877 B
Ruby
# frozen_string_literal: true
|
|
|
|
class UserProject < ApplicationRecord
|
|
# TODO: Remove this from DB (Ask Alex)
|
|
enum role: { owner: 0, normal_user: 1, technician: 2, viewer: 3 }
|
|
|
|
validates :user, presence: true, uniqueness: { scope: :project }
|
|
validates :project, presence: true
|
|
|
|
belongs_to :user, inverse_of: :user_projects, touch: true
|
|
belongs_to :assigned_by, foreign_key: 'assigned_by_id', class_name: 'User', optional: true
|
|
belongs_to :project, inverse_of: :user_projects, touch: true
|
|
|
|
before_destroy :destroy_associations
|
|
validates_uniqueness_of :user_id, scope: :project_id
|
|
|
|
def destroy_associations
|
|
# Destroy the user from all project's modules
|
|
project.project_my_modules.each do |my_module|
|
|
um2 = (my_module.user_my_modules.select { |um| um.user == self.user }).first
|
|
if um2.present?
|
|
um2.destroy
|
|
end
|
|
end
|
|
end
|
|
end
|