Fix missing authentication call in filters controller (#12746)

master
Eugen Rochko 4 years ago committed by GitHub
parent 83deae5bd7
commit 4729341903
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      app/controllers/filters_controller.rb

@ -1,10 +1,9 @@
# frozen_string_literal: true
class FiltersController < ApplicationController
include Authorization
layout 'admin'
before_action :authenticate_user!
before_action :set_filters, only: :index
before_action :set_filter, only: [:edit, :update, :destroy]
before_action :set_body_classes

Loading…
Cancel
Save