mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
[compute|brightbox] Reset times to the correct type so not string attributes
This commit is contained in:
parent
dba30fba4b
commit
440bbc30f5
4 changed files with 9 additions and 9 deletions
|
@ -40,8 +40,8 @@ module Fog
|
||||||
attribute :telephone_verified
|
attribute :telephone_verified
|
||||||
|
|
||||||
# Times
|
# Times
|
||||||
attribute :created_at
|
attribute :created_at, :type => :time
|
||||||
attribute :verified_at
|
attribute :verified_at, :type => :time
|
||||||
|
|
||||||
# Links - to be replaced
|
# Links - to be replaced
|
||||||
attribute :owner_id, :aliases => "owner", :squash => "id"
|
attribute :owner_id, :aliases => "owner", :squash => "id"
|
||||||
|
|
|
@ -26,7 +26,7 @@ module Fog
|
||||||
attribute :compatibility_mode
|
attribute :compatibility_mode
|
||||||
|
|
||||||
# Times
|
# Times
|
||||||
attribute :created_at
|
attribute :created_at, :type => :time
|
||||||
|
|
||||||
# Links - to be replaced
|
# Links - to be replaced
|
||||||
attribute :ancestor_id, :aliases => "ancestor", :squash => "id"
|
attribute :ancestor_id, :aliases => "ancestor", :squash => "id"
|
||||||
|
|
|
@ -19,8 +19,8 @@ module Fog
|
||||||
attribute :listeners
|
attribute :listeners
|
||||||
|
|
||||||
# Times
|
# Times
|
||||||
attribute :created_at
|
attribute :created_at, :type => :time
|
||||||
attribute :deleted_at
|
attribute :deleted_at, :type => :time
|
||||||
|
|
||||||
# Links - to be replaced
|
# Links - to be replaced
|
||||||
attribute :account
|
attribute :account
|
||||||
|
|
|
@ -19,10 +19,10 @@ module Fog
|
||||||
attribute :console_token
|
attribute :console_token
|
||||||
|
|
||||||
# Times
|
# Times
|
||||||
attribute :created_at
|
attribute :created_at, :type => :time
|
||||||
attribute :started_at
|
attribute :started_at, :type => :time
|
||||||
attribute :console_token_expires
|
attribute :console_token_expires, :type => :time
|
||||||
attribute :deleted_at
|
attribute :deleted_at, :type => :time
|
||||||
|
|
||||||
# Links - to be replaced
|
# Links - to be replaced
|
||||||
attribute :account_id, :aliases => "account", :squash => "id"
|
attribute :account_id, :aliases => "account", :squash => "id"
|
||||||
|
|
Loading…
Reference in a new issue