From 3c1f3e4c6529dfb761efc856f829f96d97a5c494 Mon Sep 17 00:00:00 2001 From: Reid Beels Date: Sun, 18 Mar 2012 21:49:57 -0700 Subject: [PATCH] Add person tagging on mentor and mentee topics --- app/models/person.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/person.rb b/app/models/person.rb index 78a0a46..396e06a 100644 --- a/app/models/person.rb +++ b/app/models/person.rb @@ -6,7 +6,7 @@ class Person < ActiveRecord::Base attr_protected :user_id has_paper_trail :ignore => [:user_id, :delta] - acts_as_taggable_on :tags, :technologies + acts_as_taggable_on :tags, :technologies, :mentor_topic_tags, :mentee_topic_tags sortable default_serialization_options :include => { :projects => {:include => [:tags, :technologies]},