summaryrefslogtreecommitdiffstats
path: root/routers/web/feed/profile.go
Commit message (Collapse)AuthorAgeFilesLines
* User/Org Feed render description as per web (#23887)65432023-04-041-1/+15
| | | | User descriptions should be rendered so that links and other markup appear correct in RSS feeds.
* Add pagination for dashboard and user activity feeds (#22937)Brecht Van Lommel2023-02-241-1/+1
| | | | Previously only the last few activities where available. This works for all activity and for activity on a date chosen on the heatmap.
* Implement FSFE REUSE for golang files (#21840)flynnnnnnnnnn2022-11-271-2/+1
| | | | | | | | | Change all license headers to comply with REUSE specification. Fix #16132 Co-authored-by: flynnnnnnnnnn <flynnnnnnnnnn@github> Co-authored-by: John Olheiser <john.olheiser@gmail.com>
* Fix setting HTTP headers after write (#21833)KN4CK3R2022-11-181-2/+0
| | | The headers can't be modified after it was send to the client.
* Show private data in feeds (#21369)KN4CK3R2022-10-071-1/+3
| | | Show private data in feeds for admins and matching users.
* Move some files into models' sub packages (#20262)Lunny Xiao2022-08-251-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | * Move some files into models' sub packages * Move functions * merge main branch * Fix check * fix check * Fix some tests * Fix lint * Fix lint * Revert lint changes * Fix error comments * Fix lint Co-authored-by: 6543 <6543@obermui.de>
* Add `ContextUser` to http request context (#18798)KN4CK3R2022-03-261-8/+17
| | | | | This PR adds a middleware which sets a ContextUser (like GetUserByParams before) in a single place which can be used by other methods. For routes which represent a repo or org the respective middlewares set the field too. Also fix a bug in modules/context/org.go during refactoring.
* Renamed ctx.User to ctx.Doer. (#19161)KN4CK3R2022-03-221-1/+1
| | | | Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
* RSS/Atom support for Repos (#19055)65432022-03-131-42/+3
| | | | | | | * support for repos * refactor * advertise the feeds via meta tags * allow feed suffix and feed header * optimize performance
* RSS/Atom support for Orgs (#17714)65432022-03-101-21/+24
| | | part of #569
* Move user related model into models/user (#17781)Lunny Xiao2021-11-241-4/+5
| | | | | | | | | | | | | * Move user related model into models/user * Fix lint for windows * Fix windows lint * Fix windows lint * Move some tests in models * Merge
* Add RSS/Atom feed support for user actions (#16002)65432021-10-161-0/+98
Return rss/atom feed for user based on rss url suffix or Content-Type header.