mirror of
https://github.com/mastodon/mastodon.git
synced 2025-09-05 17:31:12 +00:00
15 lines
249 B
Ruby
15 lines
249 B
Ruby
# 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
|