Merge branch 'add-username-to-activity-feed' into 'master'

Add username to activity atom feed

Closes #31268

See merge request !10802
This commit is contained in:
Rémy Coutable 2017-04-27 10:30:17 +00:00
commit 025b04f3e7
3 changed files with 6 additions and 1 deletions

View File

@ -16,7 +16,7 @@ class Event < ActiveRecord::Base
RESET_PROJECT_ACTIVITY_INTERVAL = 1.hour
delegate :name, :email, :public_email, to: :author, prefix: true, allow_nil: true
delegate :name, :email, :public_email, :username, to: :author, prefix: true, allow_nil: true
delegate :title, to: :issue, prefix: true, allow_nil: true
delegate :title, to: :merge_request, prefix: true, allow_nil: true
delegate :title, to: :note, prefix: true, allow_nil: true

View File

@ -8,6 +8,7 @@ xml.entry do
xml.media :thumbnail, width: "40", height: "40", url: image_url(avatar_icon(event.author_email))
xml.author do
xml.username event.author_username
xml.name event.author_name
xml.email event.author_public_email
end

View File

@ -0,0 +1,4 @@
---
title: Add username to activity atom feed
merge_request: 10802
author: winniehell