Implement /user/$user/edits/rss, partially solves #1737
This commit is contained in:
parent
991c940138
commit
011237c2c5
5 changed files with 84 additions and 1 deletions
|
@ -238,6 +238,9 @@ en:
|
|||
no_visible_edits_by: "No visible edits by {{name}}."
|
||||
for_all_changes: "For changes by all users see {{recent_changes_link}}"
|
||||
recent_changes: "Recent Changes"
|
||||
list_user_rss:
|
||||
title: "Edits by {{user}}"
|
||||
description: "Recent changesets by {{user}}"
|
||||
diary_entry:
|
||||
new:
|
||||
title: New Diary Entry
|
||||
|
|
|
@ -143,6 +143,7 @@ ActionController::Routing::Routes.draw do |map|
|
|||
# user pages
|
||||
map.connect '/user/:display_name', :controller => 'user', :action => 'view'
|
||||
map.connect '/user/:display_name/edits', :controller => 'changeset', :action => 'list_user'
|
||||
map.connect '/user/:display_name/edits/rss', :controller => 'changeset', :action => 'rss'
|
||||
map.connect '/user/:display_name/make_friend', :controller => 'user', :action => 'make_friend'
|
||||
map.connect '/user/:display_name/remove_friend', :controller => 'user', :action => 'remove_friend'
|
||||
map.connect '/user/:display_name/diary', :controller => 'diary_entry', :action => 'list'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue