mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-11 23:17:48 +00:00
11 lines
246 B
Ruby
11 lines
246 B
Ruby
# frozen_string_literal: true
|
|
|
|
class OutOfStockModalComponent < ModalComponent
|
|
def initialize(id:, variants: [], redirect: false)
|
|
super(id:, modal_class: "medium", instant: true)
|
|
|
|
@variants = variants
|
|
@redirect = redirect
|
|
end
|
|
end
|