Sha256: 30ef15d6681227b617d7816252fa67907533292b853f85d569cfbf6cc00f4463
Contents?: true
Size: 529 Bytes
Versions: 7
Compression:
Stored size: 529 Bytes
Contents
# frozen_string_literal: true module Script module Layers module Application class DisableScript def self.call(ctx:, api_key:, shop_domain:, extension_point_type:) script_service = Infrastructure::ScriptService.new(ctx: ctx) script_service.disable( api_key: api_key, shop_domain: shop_domain, extension_point_type: extension_point_type, ) ctx.puts(ctx.message('script.application.disabled')) end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems