clair_app/app/models/video_folder.rb
Nicolas Bally c2f8ec2efb initial
2020-10-10 00:28:38 +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