Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/fixtures/api/schemas/entities/note_user_entity.json')
-rw-r--r--spec/fixtures/api/schemas/entities/note_user_entity.json39
1 files changed, 31 insertions, 8 deletions
diff --git a/spec/fixtures/api/schemas/entities/note_user_entity.json b/spec/fixtures/api/schemas/entities/note_user_entity.json
index f5d28dd7b71..16d33ada51d 100644
--- a/spec/fixtures/api/schemas/entities/note_user_entity.json
+++ b/spec/fixtures/api/schemas/entities/note_user_entity.json
@@ -3,19 +3,42 @@
"required": [
"id",
"state",
+ "locked",
"avatar_url",
"path",
"name",
"username"
],
"properties": {
- "id": { "type": "integer" },
- "state": { "type": "string" },
- "avatar_url": { "type": [ "string", "null" ] },
- "path": { "type": "string" },
- "name": { "type": "string" },
- "username": { "type": "string" },
- "status_tooltip_html": { "$ref": "../types/nullable_string.json" },
- "show_status": { "type": "boolean" }
+ "id": {
+ "type": "integer"
+ },
+ "state": {
+ "type": "string"
+ },
+ "locked": {
+ "type": "boolean"
+ },
+ "avatar_url": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "path": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "username": {
+ "type": "string"
+ },
+ "status_tooltip_html": {
+ "$ref": "../types/nullable_string.json"
+ },
+ "show_status": {
+ "type": "boolean"
+ }
}
}