21 lines
750 B
Ruby
21 lines
750 B
Ruby
require_dependency 'declarative_policy'
|
|
|
|
class BasePolicy < DeclarativePolicy::Base
|
|
desc "User is an instance admin"
|
|
with_options scope: :user, score: 0
|
|
condition(:admin) { @user&.admin? }
|
|
|
|
with_options scope: :user, score: 0
|
|
condition(:external_user) { @user.nil? || @user.external? }
|
|
|
|
with_options scope: :user, score: 0
|
|
condition(:can_create_group) { @user&.can_create_group }
|
|
|
|
desc "The application is restricted from public visibility"
|
|
condition(:restricted_public_level, scope: :global) do
|
|
Gitlab::CurrentSettings.current_application_settings.restricted_visibility_levels.include?(Gitlab::VisibilityLevel::PUBLIC)
|
|
end
|
|
|
|
# This is prevented in some cases in `gitlab-ee`
|
|
rule { default }.enable :read_cross_project
|
|
end
|