olwen_techno_app/app/models/video_folder.rb
Nicolas Bally 2efaf19094 initial
2018-08-30 22:44:43 +02:00

9 lines
161 B
Ruby

class VideoFolder < ActiveRecord::Base
has_many :video_files
scope :publics, -> {where(:public => true).order("video_folders.position ASC")}
end