journalduhacker/app/models/weblog.rb
joshua stein 85cb7c2057 first stab at planet rss aggregation
could probably use a prettier layout and auto-posting a weblog url
to the main site (carrying tags)
2014-08-03 22:07:57 -05:00

10 lines
196 B
Ruby

class Weblog < ActiveRecord::Base
belongs_to :user
serialize :tags, Array
def sanitized_content
Loofah.fragment(self.content).scrub!(:strip).scrub!(:nofollow).to_s.html_safe
end
end