mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
17 lines
281 B
Ruby
17 lines
281 B
Ruby
module Api
|
|
class PromoImagesController < EnterpriseAttachmentController
|
|
private
|
|
|
|
def attachment_name
|
|
:promo_image
|
|
end
|
|
|
|
def enterprise_authorize_action
|
|
case action_name.to_sym
|
|
when :destroy
|
|
:remove_promo_image
|
|
end
|
|
end
|
|
end
|
|
end
|