diff options
author | Alessio Caiazza <acaiazza@gitlab.com> | 2018-12-13 12:08:53 +0100 |
---|---|---|
committer | Shinya Maeda <shinya@gitlab.com> | 2018-12-31 12:05:56 +0900 |
commit | 1ea2d9faa518f6b769b05a71a1f93b4ea0226bc1 (patch) | |
tree | 291cd8d7a6c6113e75219dc873e24fb414df119d /spec/factories | |
parent | c07bf1abf2a5c3751e575ee5926e9a052fa0b341 (diff) | |
download | gitlab-ce-1ea2d9faa518f6b769b05a71a1f93b4ea0226bc1.tar.gz |
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.rb | 1 |
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 |