7 lines
129 B
Ruby
7 lines
129 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class ApplicationRecord < ActiveRecord::Base
|
||
|
self.abstract_class = true
|
||
|
include Remotable
|
||
|
end
|