Browse Source

Fix #16603 (#16605)

Fix issue #16603 undefined method `serialize_payload' for Unsuspend Account Service error.
It seems that this service forgot to `include Payloadable` so that `serialize_payload` could not be found in this service.
closed-social-glitch-2
Holger 3 years ago
committed by GitHub
parent
commit
0cae6c07bb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      app/services/unsuspend_account_service.rb

+ 1
- 0
app/services/unsuspend_account_service.rb View File

@ -1,6 +1,7 @@
# frozen_string_literal: true
class UnsuspendAccountService < BaseService
include Payloadable
def call(account)
@account = account

Loading…
Cancel
Save