Files
openfoodnetwork/app/models/connected_apps/vine.rb
Gaetan Craig-Riou 0824430da5 Add Vine connected app
The connection/disconnection logic is yet to be implemented
2024-09-24 10:43:55 +10:00

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