article.rb 224 Bytes
require_dependency 'article'

class Article

  before_create do |article|
    if article.parent.kind_of?(CommunityTrackPlugin::Step)
      article.accept_comments = article.parent.accept_comments
    end
    true
  end

end