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