README.md in legato-0.5.1 vs README.md in legato-0.5.2
- old
+ new
@@ -251,10 +251,11 @@
```ruby
Legato::Management::Account.all(user)
Legato::Management::WebProperty.all(user)
Legato::Management::Profile.all(user)
+Legato::Management::Goal.all(user)
```
## Other Parameters Can be Passed to a call to #results ##
* :start_date - The date of the period you would like this report to start
* :end_date - The date to end, inclusive
@@ -283,9 +284,20 @@
```ruby
query = Exit.realtime
query.realtime? #=> true
query.tracking_scope #=> 'rt'
```
+
+## Managing Quotas ##
+
+Assigning a `quota_user` or `user_ip` on a user instance will be used by management and query requests.
+
+ ```ruby
+ user = Legato::User.new(access_token)
+ user.quota_user = 'some_unique_user_identifier'
+ # OR
+ user.user_ip = ip_address_from_a_web_user_or_something
+ ```
## License ##
(The MIT License)