mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-04-02 06:51:40 +00:00
11 lines
193 B
Ruby
11 lines
193 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Admin
|
|
class VouchersController < ResourceController
|
|
|
|
def new
|
|
@enterprise = Enterprise.find_by permalink: params[:enterprise_id]
|
|
end
|
|
end
|
|
end
|