Displaying 2 results from an estimated 2 matches for "tagresourc".
Did you mean:
tagresource
2005 Oct 17
0
acts_as_taggable and per-user tags
...---------------------------
class Resource < ActiveRecord::Base
belongs_to :user
validates_presence_of :filename
validates_uniqueness_of :filename, :message => "already exists, try
uploading another file or deleting first."
acts_as_taggable :join_class_name => ''TagResource''
-------------------------------------------------------------------------------------------------
class TagResource
belongs_to :user
end
-------------------------------------------------------------------------------------------------
class ResourcesController < ApplicationContro...
2006 Jan 22
2
acts_as_taggable: weird SQL problem with untagging
...ource < ActiveRecord::Base
belongs_to :user
validates_presence_of :filename
validates_uniqueness_of :filename, :scope => "user_id",
:message => "already exists, try uploading another file or deleting first."
acts_as_taggable :join_class_name => ''TagResource''
---------------------------------------------------------------------------------------------------
class TagResource
belongs_to :user
end
---------------------------------------------------------------------------------------------------
And I''m trying to remove a tag fro...