Add latest changes from gitlab-org/gitlab@master

This commit is contained in:
GitLab Bot
2025-03-13 15:12:32 +00:00
parent c1553a2569
commit aefada43de
102 changed files with 1198 additions and 267 deletions

View File

@ -119,6 +119,14 @@ class EventFilter
end
end
def filters
[ALL, PUSH, MERGED, ISSUE, COMMENTS, TEAM, WIKI, DESIGNS]
end
def ==(other)
other.is_a?(self.class) && filter == other.filter
end
private
def in_operator_params(array_data:, scope: nil, in_column: nil, in_values: nil, order_hint_column: nil)
@ -213,10 +221,6 @@ class EventFilter
def design_events(events)
events.for_design
end
def filters
[ALL, PUSH, MERGED, ISSUE, COMMENTS, TEAM, WIKI, DESIGNS]
end
end
# rubocop: enable CodeReuse/ActiveRecord