24 lines
845 B
Ruby
24 lines
845 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Class for video links
|
|
class Video < ApplicationRecord
|
|
# == Constants ============================================================
|
|
|
|
# == Attributes ===========================================================
|
|
|
|
# == Extensions ===========================================================
|
|
|
|
# == Relationships ========================================================
|
|
belongs_to :video_account, optional: true
|
|
|
|
# == Validations ==========================================================
|
|
|
|
# == Scopes ===============================================================
|
|
|
|
# == Callbacks ============================================================
|
|
|
|
# == Class Methods ========================================================
|
|
|
|
# == Instance Methods =====================================================
|
|
end
|