Gab-Social/app/models/media_attachment_album.rb
mgabdev 34f6a1ab5b Progress
new MediaAttachment video style :playable for mp4 to make videojs work with multiple files, hiding albums, hiding bookmark collections. may need tweaks on mediaattachment for mov and other formats : todo :
2020-12-22 12:11:22 -05:00

30 lines
735 B
Ruby

# frozen_string_literal: true
# == Schema Information
#
# Table name: media_attachment_albums
#
# id :bigint(8) not null, primary key
# title :text default(""), not null
# description :text
# account_id :integer not null
# visibility :integer default("public"), not null
# created_at :datetime not null
# updated_at :datetime not null
# cover_id :bigint(8)
# count :integer default(0), not null
#
class MediaAttachmentAlbum < ApplicationRecord
include Paginable
enum visibility: [
:public,
:private,
], _suffix: :visibility
belongs_to :account
belongs_to :cover, class_name: 'MediaAttachment', optional: true
end