mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-06 02:51:34 +00:00
16 lines
243 B
Ruby
16 lines
243 B
Ruby
# frozen_string_literal: true
|
|
|
|
# An enterprise can opt-in to use VINE API to manage vouchers
|
|
#
|
|
module ConnectedApps
|
|
class Vine < ConnectedApp
|
|
def connect(api_key: )
|
|
# TODO
|
|
end
|
|
|
|
def disconnect
|
|
# TODO
|
|
end
|
|
end
|
|
end
|