Commit 114bf455 authored by Giorgenes Gelatti's avatar Giorgenes Gelatti

Apply 1 suggestion(s) to 1 file(s)

parent 93842ae9
...@@ -29,8 +29,8 @@ class Packages::Event < ApplicationRecord ...@@ -29,8 +29,8 @@ class Packages::Event < ApplicationRecord
"i_package_#{event_scope}_#{originator}_#{event_type.gsub(/_packages?/, "")}" "i_package_#{event_scope}_#{originator}_#{event_type.gsub(/_packages?/, "")}"
end end
# remove some of the events for now so we dont hammer redis too hard # Remove some of the events, for now, so we don't hammer Redis too hard.
# TODO: probably remove this very soon # See: https://gitlab.com/gitlab-org/gitlab/-/issues/280770
def self.event_allowed?(event_scope, event_type, originator) def self.event_allowed?(event_scope, event_type, originator)
return false if originator.to_sym == :guest return false if originator.to_sym == :guest
return true if UNIQUE_EVENTS_ALLOWED.include?(event_type.to_sym) return true if UNIQUE_EVENTS_ALLOWED.include?(event_type.to_sym)
......
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