mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-14 04:04:23 +00:00
12 lines
221 B
Ruby
12 lines
221 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Admin
|
|
class VouchersController < ResourceController
|
|
|
|
def new
|
|
@enterprise = Enterprise.find_by permalink: params[:enterprise_id]
|
|
@voucher = Voucher.new
|
|
end
|
|
end
|
|
end
|