Files
openfoodnetwork/engines/web/config/routes.rb

8 lines
282 B
Ruby

Openfoodnetwork::Application.routes.prepend do
scope '/api/cookies' do
resource :consent, only: [:show, :create, :destroy], controller: "web/api/cookies_consent"
end
get "/angular-templates/:id", to: "web/angular_templates#show", constraints: { name: %r{[\/\w\.]+} }
end