mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
17 lines
261 B
Ruby
17 lines
261 B
Ruby
module Api
|
|
class LogosController < EnterpriseAttachmentController
|
|
private
|
|
|
|
def attachment_name
|
|
:logo
|
|
end
|
|
|
|
def enterprise_authorize_action
|
|
case action_name.to_sym
|
|
when :destroy
|
|
:remove_logo
|
|
end
|
|
end
|
|
end
|
|
end
|