mirror of
https://github.com/we-promise/sure.git
synced 2026-04-10 15:54:48 +00:00
8 lines
128 B
Ruby
8 lines
128 B
Ruby
module Accountable
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
has_one :account, as: :accountable, touch: true
|
|
end
|
|
end
|