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:
authorAlessio Caiazza <acaiazza@gitlab.com>2018-12-13 14:08:53 +0300
committerShinya Maeda <shinya@gitlab.com>2018-12-31 06:05:56 +0300
commit1ea2d9faa518f6b769b05a71a1f93b4ea0226bc1 (patch)
tree291cd8d7a6c6113e75219dc873e24fb414df119d /spec/factories
parentc07bf1abf2a5c3751e575ee5926e9a052fa0b341 (diff)
Add releases API
This commit introduces Releases API under /api/v4/projects/:id/releases * We are introducing release policies at project level. * We are deprecating releases changes from tags, both api and web interface. * Tags::CreateService no longer create a release This feature is controlled by :releases_page feature flag
Diffstat (limited to 'spec/factories')
-rw-r--r--spec/factories/releases.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/factories/releases.rb b/spec/factories/releases.rb
index 18047c74a5d..eaf3999e9ff 100644
--- a/spec/factories/releases.rb
+++ b/spec/factories/releases.rb
@@ -4,5 +4,6 @@ FactoryBot.define do
name { tag }
description "Awesome release"
project
+ author
end
end