Welcome to mirror list, hosted at ThFree Co, Russian Federation.

design_management.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 81e170f7e5943c0a83bea34aa331235c1c659ef3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module DesignManagement
  DESIGN_IMAGE_SIZES = %w(v432x230).freeze

  def self.designs_directory
    'designs'
  end

  def self.table_name_prefix
    'design_management_'
  end
end