From ca3db24b8d8e4399a188e4a3b70991a95e1df621 Mon Sep 17 00:00:00 2001 From: viehlieb Date: Fri, 23 May 2025 01:34:19 +0200 Subject: [PATCH] fix wrong weird controller inheritance --- app/controllers/finance/invoices_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/finance/invoices_controller.rb b/app/controllers/finance/invoices_controller.rb index c85ae16b..d70b92ec 100644 --- a/app/controllers/finance/invoices_controller.rb +++ b/app/controllers/finance/invoices_controller.rb @@ -1,4 +1,4 @@ -class Finance::InvoicesController < OrderInvoiceControllerBase +class Finance::InvoicesController < ApplicationController before_action :authenticate_finance_or_invoices before_action :find_invoice, only: %i[show edit update destroy]