Method: CloudApp::Account.stats
- Defined in:
- lib/cloudapp/account.rb
.stats ⇒ Hash
Get the total number of drops created and total views for all drops.
Requires authentication.
112 113 114 115 |
# File 'lib/cloudapp/account.rb', line 112 def self.stats res = get "/account/stats", :digest_auth => @@auth res.ok? ? res.symbolize_keys! : bad_response(res) end |