ee636f1994
For watchers and users with pins that don't have access to the private board where the card was moved to.
8 lines
163 B
Ruby
8 lines
163 B
Ruby
class Card::CleanInaccessibleDataJob < ApplicationJob
|
|
discard_on ActiveJob::DeserializationError
|
|
|
|
def perform(card)
|
|
card.clean_inaccessible_data
|
|
end
|
|
end
|