Group and team rss is valid now
This commit is contained in:
parent
8812d9dee2
commit
473efc82b6
10 changed files with 51 additions and 29 deletions
|
@ -1,8 +1,8 @@
|
|||
xml.instruct!
|
||||
xml.feed "xmlns" => "http://www.w3.org/2005/Atom", "xmlns:media" => "http://search.yahoo.com/mrss/" do
|
||||
xml.title "Dashboard feed#{" - #{current_user.name}" if current_user.name.present?}"
|
||||
xml.link :href => projects_url(:atom), :rel => "self", :type => "application/atom+xml"
|
||||
xml.link :href => projects_url, :rel => "alternate", :type => "text/html"
|
||||
xml.title "Group feed - #{@group.name}"
|
||||
xml.link :href => group_path(@group, :atom), :rel => "self", :type => "application/atom+xml"
|
||||
xml.link :href => group_path(@group), :rel => "alternate", :type => "text/html"
|
||||
xml.id projects_url
|
||||
xml.updated @events.maximum(:updated_at).strftime("%Y-%m-%dT%H:%M:%SZ") if @events.any?
|
||||
|
||||
|
|
|
@ -16,11 +16,11 @@
|
|||
.description.well.light
|
||||
= @group.description
|
||||
= render "projects", projects: @projects
|
||||
%div
|
||||
%span.rss-icon
|
||||
= link_to dashboard_path(:atom, { private_token: current_user.private_token }) do
|
||||
= image_tag "rss_ui.png", title: "feed"
|
||||
%strong News Feed
|
||||
.prepend-top-20
|
||||
= link_to group_path(@group, { format: :atom, private_token: current_user.private_token }), title: "Feed" do
|
||||
%strong
|
||||
%i.icon-rss
|
||||
News Feed
|
||||
|
||||
%hr
|
||||
.gitlab-promo
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue