article.rb 217 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 require_dependency 'article' class Article def self.folder_types_with_video self.folder_types_without_video << 'VideoGallery' end class << self alias_method_chain :folder_types, :video end end