Don't show system events in Activity view

This commit is contained in:
Kevin McConnell
2025-02-12 14:31:29 +00:00
parent b0add103c4
commit a24817ffb7
+1 -1
View File
@@ -18,7 +18,7 @@ class EventsController < ApplicationController
end
def user_events
Event.where(bubble: user_bubbles)
Event.where(bubble: user_bubbles, creator: Current.account.users.without_system)
end
def user_bubbles