Keep order of profile tags

closes #7724
This commit is contained in:
Benjamin Neff 2018-02-26 01:42:17 +01:00 committed by Dennis Schubert
parent 4cd8de5327
commit 4e5ee36675
No known key found for this signature in database
GPG key ID: 5A0304BEA7966D7E
2 changed files with 12 additions and 1 deletions

View file

@ -11,7 +11,7 @@ class Profile < ApplicationRecord
include Diaspora::Taggable include Diaspora::Taggable
attr_accessor :tag_string attr_accessor :tag_string
acts_as_taggable_on :tags acts_as_ordered_taggable
extract_tags_from :tag_string extract_tags_from :tag_string
validates :tag_list, :length => { :maximum => 5 } validates :tag_list, :length => { :maximum => 5 }

View file

@ -269,6 +269,17 @@ describe Profile, :type => :model do
expect(object).not_to be_valid expect(object).not_to be_valid
end end
it "keeps the order of the tag_string" do
ActsAsTaggableOn::Tag.create(name: "test2")
ActsAsTaggableOn::Tag.create(name: "test1")
string = "#test1 #test2"
object.tag_string = string
object.save
expect(Profile.find(object.id).tag_string).to eq(string)
end
it_should_behave_like "it is taggable" it_should_behave_like "it is taggable"
end end