19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# File 'lib/mls/models/action.rb', line 19
def self.squash(attributes)
squashed_actions = []
where(nil).each do |action|
action.account_id = action.metadata.where(key: 'performed_by_id').first&.value
action.diff = action.diff.slice(*attributes) if attributes
if squashed_actions.last &&
action.account_id == squashed_actions.last.account_id &&
action.timestamp + 15.minutes > squashed_actions.last.timestamp
action.diff.each do |key, value|
next if value[0] == value[1]
if squashed_actions.last.diff[key]
squashed_actions.last.diff[key][0] = value[0]
else
squashed_actions.last.diff[key] = value
end
end
else
squashed_actions << action
end
end
squashed_actions
end
|