Skip to content
Snippets Groups Projects
Commit bd3b00da authored by Arnaud Levy's avatar Arnaud Levy
Browse files

websites for lab

parent 5957e584
No related branches found
No related tags found
No related merge requests found
......@@ -26,26 +26,33 @@
class Education::School < ApplicationRecord
include WithGit
belongs_to :university
has_many :websites, class_name: 'Communication::Website', as: :about, dependent: :nullify
belongs_to :university
has_many :websites,
class_name: 'Communication::Website',
as: :about,
dependent: :nullify
has_many :university_roles,
class_name: 'University::Role',
as: :target,
dependent: :destroy
has_many :involvements_through_roles,
through: :university_roles,
source: :involvements
has_many :university_people_through_role_involvements,
through: :involvements_through_roles,
source: :person
has_many :university_people_through_program_involvements,
through: :programs,
source: :university_people_through_involvements
has_many :university_people_through_program_role_involvements,
through: :programs,
source: :university_people_through_role_involvements
has_and_belongs_to_many :programs,
class_name: 'Education::Program',
join_table: 'education_programs_schools',
foreign_key: 'education_school_id',
association_foreign_key: 'education_program_id'
has_many :university_roles, class_name: 'University::Role', as: :target, dependent: :destroy
has_many :involvements_through_roles, through: :university_roles, source: :involvements
has_many :university_people_through_role_involvements,
through: :involvements_through_roles,
source: :person
has_many :university_people_through_program_involvements,
through: :programs,
source: :university_people_through_involvements
has_many :university_people_through_program_role_involvements,
through: :programs,
source: :university_people_through_role_involvements
validates :name, :address, :city, :zipcode, :country, presence: true
scope :ordered, -> { order(:name) }
......
......@@ -24,8 +24,12 @@ class Research::Laboratory < ApplicationRecord
include WithGit
belongs_to :university
has_many :websites,
class_name: 'Communication::Website',
as: :about,
dependent: :nullify
has_many :axes,
class_name: "Research::Laboratory::Axis",
class_name: 'Research::Laboratory::Axis',
foreign_key: :research_laboratory_id,
dependent: :destroy
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment