cartodb-4.42/lib/carto/tracking/validators/widget.rb
2024-04-06 05:25:13 +00:00

16 lines
314 B
Ruby

module Carto
module Tracking
module Validators
module Widget
module Existence
def check_widget_exists!
unless @format.fetch_record!(:widget)
raise Carto::LoadError.new('Widget not found')
end
end
end
end
end
end
end