Commit 9e613b91 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge pull request #7318 from jvanbaarsen/constant-warning-fix

Removed some constant allready defined warnings
parents c29857ac 3c439888
module Gitlab
class Theme
BASIC = 1
MARS = 2
MODERN = 3
GRAY = 4
COLOR = 5
BASIC = 1 unless const_defined?(:BASIC)
MARS = 2 unless const_defined?(:MARS)
MODERN = 3 unless const_defined?(:MODERN)
GRAY = 4 unless const_defined?(:GRAY)
COLOR = 5 unless const_defined?(:COLOR)
def self.css_class_by_id(id)
themes = {
......
......@@ -5,9 +5,9 @@
#
module Gitlab
module VisibilityLevel
PRIVATE = 0
INTERNAL = 10
PUBLIC = 20
PRIVATE = 0 unless const_defined?(:PRIVATE)
INTERNAL = 10 unless const_defined?(:INTERNAL)
PUBLIC = 20 unless const_defined?(:PUBLIC)
class << self
def values
......@@ -21,7 +21,7 @@ module Gitlab
'Public' => PUBLIC
}
end
def allowed_for?(user, level)
user.is_admin? || !Gitlab.config.gitlab.restricted_visibility_levels.include?(level)
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment