Sha256: 25735a2bc04bcf702091b62645c29f94e007ba739e46d27ccd2168117f7cbb7c

Contents?: true

Size: 771 Bytes

Versions: 5

Compression:

Stored size: 771 Bytes

Contents

class Create < ActiveRecord::Base
  belongs_to :agent
  belongs_to :work, class_name: 'Manifestation', foreign_key: 'work_id', touch: true
  belongs_to :create_type, optional: true

  validates_associated :agent, :work
  validates_presence_of :agent_id, :work_id
  validates_uniqueness_of :work_id, scope: :agent_id
  after_save :reindex
  after_destroy :reindex

  acts_as_list scope: :work

  def reindex
    agent.try(:index)
    work.try(:index)
  end
end

# == Schema Information
#
# Table name: creates
#
#  id             :integer          not null, primary key
#  agent_id       :integer          not null
#  work_id        :integer          not null
#  position       :integer
#  created_at     :datetime
#  updated_at     :datetime
#  create_type_id :integer
#

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
enju_biblio-0.3.2 app/models/create.rb
enju_biblio-0.3.1 app/models/create.rb
enju_biblio-0.3.0 app/models/create.rb
enju_biblio-0.3.0.rc.1 app/models/create.rb
enju_biblio-0.3.0.beta.2 app/models/create.rb