mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-28 21:07:16 +00:00
8 lines
149 B
Ruby
8 lines
149 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Web
|
|
class ApplicationController < ActionController::Base
|
|
protect_from_forgery with: :exception
|
|
end
|
|
end
|