mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
21 lines
343 B
Ruby
21 lines
343 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Api
|
|
module V0
|
|
class LogosController < Api::V0::EnterpriseAttachmentController
|
|
private
|
|
|
|
def attachment_name
|
|
:logo
|
|
end
|
|
|
|
def enterprise_authorize_action
|
|
case action_name.to_sym
|
|
when :destroy
|
|
:remove_logo
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|