Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions doc/7/controllers/collection/list/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ Additional query options
| Property | Type<br/>(default) | Description |
|------------|---------------------------------|------------------------------------------------------------------------------|
| `queuable` | <pre>boolean</pre><br/>(`true`) | If true, queues the request during downtime, until connected to Kuzzle again |
| `from` | <pre>number</pre> <br/>(`0`) | Offset of the first result <DeprecatedBadge since="7.1.4"/> |
| `size` | <pre>number</pre> <br/>(`10`) | Maximum number of returned results <DeprecatedBadge since="7.1.4"/> |
| `from` | <pre>number</pre> <br/>(`0`) | Offset of the first result <DeprecatedBadge version="7.1.4"/> |
| `size` | <pre>number</pre> <br/>(`10`) | Maximum number of returned results <DeprecatedBadge version="7.1.4"/> |

## Resolves

Expand All @@ -41,8 +41,8 @@ Resolves to an object containing the following properties:
|---------------|---------------------|--------------------------------------------------------------------|
| `type` | <pre>string</pre> | Types of returned collections <br/>(`all`, `realtime` or `stored`) |
| `collections` | <pre>object[]</pre> | List of collections |
| `from` | <pre>number</pre> | Offset of the first result <DeprecatedBadge since="7.1.4"/> |
| `size` | <pre>number</pre> | Maximum number of returned results <DeprecatedBadge since="7.1.4"/> |
| `from` | <pre>number</pre> | Offset of the first result <DeprecatedBadge version="7.1.4"/> |
| `size` | <pre>number</pre> | Maximum number of returned results <DeprecatedBadge version="7.1.4"/> |

Each object in the `collections` array contains the following properties:

Expand Down
5 changes: 1 addition & 4 deletions doc/7/controllers/collection/update/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,9 @@ const definition = {
}
};
```

</SinceBadge>


<DeprecatedBadge version="7.4.0">
<DeprecatedBadge version="7.4.0" >

### definition

Expand All @@ -88,7 +86,6 @@ More informations about database mappings [here](/core/2/guides/essentials/datab

</DeprecatedBadge>


## Resolves

Resolve if the collection is successfully updated.
Expand Down
4 changes: 2 additions & 2 deletions doc/7/controllers/security/search-api-keys/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
code: true
type: page
title: searchApiKeys
description: Searches for an user API keys.
description: Searches for a user API keys.
---

# searchApiKeys
Expand All @@ -11,7 +11,7 @@ description: Searches for an user API keys.

<SinceBadge version="Kuzzle 2.1.0" />

Searches for an user API keys.
Searches for a user API keys.

<br />

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: security#searchApiKeys
description: Searches for an user API keys
description: Searches for a user API keys
hooks:
before: >
curl --fail -H "Content-type: application/json" -d '{
Expand Down
2 changes: 1 addition & 1 deletion doc/7/getting-started/.react-native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"ios": "node_modules/.bin/expo-cli start --ios",
"web": "node_modules/.bin/expo-cli start --web",
"eject": "node_modules/.bin/expo-cli eject",
"test": "node_modules/.bin/cypress run --record"
"test": "node_modules/.bin/cypress run --record --key $CYPRESS_RECORD_KEY_DOC"
},
"dependencies": {
"cypress": "^3.8.1",
Expand Down
2 changes: 1 addition & 1 deletion doc/7/getting-started/.react/with-redux/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"postinstall": "if [ ! -f ../../../../../dist/kuzzle.js ]; then npm run build --prefix ../../../../../;fi && rm -rf ./node_modules/kuzzle-sdk/* && rsync -r --exclude 'getting-started' ../../../../../ ./node_modules/kuzzle-sdk",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "./node_modules/.bin/cypress run --record",
"test": "./node_modules/.bin/cypress run --record --key $CYPRESS_RECORD_KEY_DOC",
"eject": "react-scripts eject"
},
"eslintConfig": {
Expand Down
2 changes: 1 addition & 1 deletion doc/7/getting-started/.vuejs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"serve-with-vuex": "cd with-vuex && vue-cli-service serve",
"build-with-vuex": "cd with-vuex && vue-cli-service build",
"lint-with-vuex": "cd with-vuex && vue-cli-service lint",
"test": "./node_modules/.bin/cypress run --record"
"test": "./node_modules/.bin/cypress run --record --key $CYPRESS_RECORD_KEY_DOC"
},
"dependencies": {
"core-js": "^2.6.5",
Expand Down
2 changes: 1 addition & 1 deletion src/controllers/Security.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class SecurityController extends BaseController {
}

/**
* Searches for an user API key.
* Searches for a user API key.
*
* @param {String} userId - User kuid
* @param {Object} [query] - Search query
Expand Down