2
0

Add Form::BaseBatch class for "batch form update" objects (#35458)

This commit is contained in:
Matt Jankowski
2025-07-23 03:50:35 -04:00
committed by GitHub
parent 62a23b1985
commit 70058ae49d
6 changed files with 29 additions and 31 deletions

View File

@@ -0,0 +1,14 @@
# frozen_string_literal: true
class Form::BaseBatch
include ActiveModel::Model
include Authorization
include AccountableConcern
attr_accessor :action,
:current_account
def save
raise 'Override in subclass'
end
end