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
path: root/spec
diff options
context:
space:
mode:
authorShinya Maeda <gitlab.shinyamaeda@gmail.com>2017-05-19 16:24:31 +0300
committerShinya Maeda <gitlab.shinyamaeda@gmail.com>2017-05-30 17:55:09 +0300
commitbfa028e13a41b16b0da2d69359694edbebf9e455 (patch)
tree61d8f8fc1870a512dc68be259d5f5344790650c1 /spec
parentf6a8894a5928e1cc37d8301c555fcfd5953cc180 (diff)
Remove deleted_at from Entity. Use find_by. Remove returns.
Diffstat (limited to 'spec')
-rw-r--r--spec/fixtures/api/schemas/pipeline_schedule.json3
1 files changed, 1 insertions, 2 deletions
diff --git a/spec/fixtures/api/schemas/pipeline_schedule.json b/spec/fixtures/api/schemas/pipeline_schedule.json
index 9d7853d0f78..f6346bd0fb6 100644
--- a/spec/fixtures/api/schemas/pipeline_schedule.json
+++ b/spec/fixtures/api/schemas/pipeline_schedule.json
@@ -10,7 +10,6 @@
"active": { "type": "boolean" },
"created_at": { "type": "date" },
"updated_at": { "type": "date" },
- "deleted_at": { "type": "date" },
"last_pipeline": {
"type": ["object", "null"],
"properties": {
@@ -36,7 +35,7 @@
},
"required": [
"id", "description", "ref", "cron", "cron_timezone", "next_run_at",
- "active", "created_at", "updated_at", "deleted_at", "owner"
+ "active", "created_at", "updated_at", "owner"
],
"additionalProperties": false
}