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-12 12:56:43 +0300
committerAlessio Caiazza <acaiazza@gitlab.com>2018-12-13 14:15:21 +0300
commitb782ba1113970728989eebdf4c8fc44f8091c8d8 (patch)
treed78c36b3c216f0cf627ab3177da22c8717f390a2 /app/models/release.rb
parentdd62164d118c8bb741026abcab3db62aaedd18d5 (diff)
Add name, author and sha to releases
This commit adds a name to each release, defaulting it to tag name, keeps track of the SHA when a new release is created and tracks the current user as release author.
Diffstat (limited to 'app/models/release.rb')
-rw-r--r--app/models/release.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/models/release.rb b/app/models/release.rb
index cba80ad30ca..7a09ee459a6 100644
--- a/app/models/release.rb
+++ b/app/models/release.rb
@@ -6,6 +6,7 @@ class Release < ActiveRecord::Base
cache_markdown_field :description
belongs_to :project
+ belongs_to :author, class_name: 'User'
validates :description, :project, :tag, presence: true
end