Closed michaelminter closed 9 years ago
@michaelminter
It is possible, but I would not recommend it. Would updating SslCerts::Disable
to include a guard clause (e.g., return unless context.domain.ssl_cert.present?
) and then always including it in Domains::Rename
's organized interactors work for you instead?
Yeah, that's what I'm doing now as a workaround. But for low level insight, how do you call context in the organized interactor?
@michaelminter you call context on the instance, eg
class Organizer
include Interactor::Organizer
organize [A, B]
def call
# Access context here
super
end
end
I have something like this:
But getting:
Is there a way to access
context
from this class?