Просмотр исходного кода

API Filtering Documentation Changes

* Fixed typo
* Clarified documentation regarding filtering multiple times (some filters can, some cannot)
dansheps 7 лет назад
Родитель
Сommit
332487efcd
2 измененных файлов с 8 добавлено и 1 удалено
  1. 7 0
      CHANGELOG.md
  2. 1 1
      docs/api/overview.md

+ 7 - 0
CHANGELOG.md

@@ -1,3 +1,10 @@
+v2.5.9 (FUTURE)
+
+## Bug Fixes
+
+* [#2577](https://github.com/digitalocean/netbox/issues/2577) - Clarification of wording in API regarding filtering
+* [#2991](https://github.com/digitalocean/netbox/issues/2991) - Correct documentation for API Filtering
+
 v2.5.8 (2019-03-11)
 
 ## Enhancements

+ 1 - 1
docs/api/overview.md

@@ -261,7 +261,7 @@ A list of objects retrieved via the API can be filtered by passing one or more q
 GET /api/ipam/prefixes/?status=1
 ```
 
-The same filter can be incldued multiple times. These will effect a logical OR and return objects matching any of the given values. For example, the following will return all active and reserved prefixes:
+Certain filters can be included multiple times within a single request. These will effect a logical OR and return objects matching any of the given values. For example, the following will return all active and reserved prefixes:
 
 ```
 GET /api/ipam/prefixes/?status=1&status=2