diff --git a/app/controllers/admin/spaces_controller.rb b/app/controllers/admin/spaces_controller.rb index 43a8d232f..6cb7bdfe6 100644 --- a/app/controllers/admin/spaces_controller.rb +++ b/app/controllers/admin/spaces_controller.rb @@ -5,10 +5,9 @@ module Admin class SpacesController < Admin::ApplicationController layout "admin" - # TODO: What kind of logging do we need? Any? Looking for guidance. I can assume we want to - # log changes to a space. - # - # after_action only: %i[update] { Audit::Logger.log(:moderator, current_user, params.dup) } + after_action only: %i[update] do + Audit::Logger.log(:internal, current_user, params.dup) + end # @note I'm instantiating the @space because in the index view I'm rendering a form that then # PUTs to the update action. diff --git a/app/services/audit/notification.rb b/app/services/audit/notification.rb index 0b127c4c9..1385cde26 100644 --- a/app/services/audit/notification.rb +++ b/app/services/audit/notification.rb @@ -1,12 +1,11 @@ module Audit + ## + # Main class for wrapping ActiveSupport Instrumentation API. + # + # This class represent main entry point for receiving and notifying custom + # events, implemented according to + # https://guides.rubyonrails.org/active_support_instrumentation.html#creating-custom-events class Notification - ## - # Main class for wrapping ActiveSupport Instrumentation API. - # - # This class represent main entry point for receiving and notifying custom - # events, implemented according to - # https://guides.rubyonrails.org/active_support_instrumentation.html#creating-custom-events - class << self include Audit::Helper @@ -22,7 +21,6 @@ module Audit # payload.user_id = current_user.id # payload.roles = current_user.roles.pluck(:name) # end - def notify(listener, &block) return unless block @@ -32,7 +30,6 @@ module Audit ## # Audit::Notification.listen receives Events sent from ActiveSupport Instrumentation API. # Then, this event is serialized and send to background job. - def listen(*args) event = ActiveSupport::Notifications::Event.new(*args) AuditLog.create!(params_hash(event))