summaryrefslogtreecommitdiff
path: root/app/models/pages_deployment.rb
blob: 78e0f185a11043ef3a3d625594da3abb4f7f5230 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

# PagesDeployment stores a zip archive containing GitLab Pages web-site
class PagesDeployment < ApplicationRecord
  belongs_to :project, optional: false
  belongs_to :ci_build, class_name: 'Ci::Build', optional: true

  validates :file, presence: true
  validates :file_store, presence: true, inclusion: { in: ObjectStorage::SUPPORTED_STORES }
  validates :size, presence: true, numericality: { greater_than: 0, only_integer: true }
end