Files
openfoodnetwork/app/controllers/admin/terms_of_service_files_controller.rb
Maikel Linke 007b8cd888 Add new admin page for TOS files
Just the basic Rails setup without any functionality yet.
2021-06-09 14:06:53 +10:00

9 lines
144 B
Ruby

# frozen_string_literal: true
module Admin
class TermsOfServiceFilesController < Spree::Admin::BaseController
def show
end
end
end