9 lines
225 B
Ruby
9 lines
225 B
Ruby
|
class Reports::UpdateAccountIdentity < Reports::UpdateIdentity
|
||
|
attr_reader :account
|
||
|
|
||
|
def initialize(account, timestamp = Time.now)
|
||
|
super(account, timestamp)
|
||
|
@identity = ::AccountIdentity.new(account.id)
|
||
|
end
|
||
|
end
|