olwen_demo_app/app/models/video_folder.rb
Nicolas Bally 7b2e6811dd initial
2020-06-05 11:10:02 +02:00

9 lines
160 B
Ruby

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