DEV: Remove unused user_auth_token_log_serializer

Usage was removed in f2331ef07f
This commit is contained in:
David Taylor 2019-11-27 16:50:31 +00:00
parent 119c4d0c1b
commit b6e08c06c5

View File

@ -1,18 +0,0 @@
# frozen_string_literal: true
class UserAuthTokenLogSerializer < ApplicationSerializer
include UserAuthTokensMixin
attributes :action
def action
case object.action
when 'generate'
I18n.t('log_in')
when 'destroy'
I18n.t('unsubscribe.log_out')
else
I18n.t('staff_action_logs.unknown')
end
end
end