Method: Enki::Comment.new_with_filter

Defined in:
app/models/enki/comment.rb

.new_with_filter(params) ⇒ Object



56
57
58
59
60
61
# File 'app/models/enki/comment.rb', line 56

def new_with_filter(params)
  comment = Comment.new(params)
  comment.created_at = Time.now
  comment.apply_filter
  comment
end