Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
7dcb601
User/Org/Repo reserve "*.rss" pattern
6543 Jun 10, 2021
e8fba1f
refactor user.retriveFeeds
6543 Jun 10, 2021
b839c84
wip
6543 Jun 10, 2021
460e8ef
wip
6543 Jun 11, 2021
73f9af2
Merge branch 'master' into rss
6543 Jun 16, 2021
83eda4d
just reserve for now
6543 Jun 17, 2021
29f61be
Merge branch 'master' into rss
6543 Jul 1, 2021
1b67926
Merge branch 'main' into rss
6543 Jul 26, 2021
0af4fc9
Merge branch 'main' into rss
6543 Aug 29, 2021
83dd3a6
Merge branch 'master' into rss
6543 Sep 5, 2021
ed1522a
adopt
6543 Sep 5, 2021
4bb0a4d
use writer interface
6543 Sep 5, 2021
8568cb0
set correct Content-Type
6543 Sep 5, 2021
902be01
wip next
6543 Sep 5, 2021
3f6fe33
Merge branch 'main' into rss
6543 Sep 9, 2021
be3d0a8
minify-diff
6543 Sep 9, 2021
f4aad73
ADD org rss as todo
6543 Sep 9, 2021
9ddd72a
refactor
6543 Sep 9, 2021
96cdba9
wip
6543 Sep 9, 2021
8205dc6
fix lint
6543 Sep 9, 2021
ab92f54
Merge branch 'master' into rss
6543 Sep 10, 2021
41c9175
resolve last todos
6543 Sep 10, 2021
59b7b0b
Merge branch 'main' into rss
6543 Sep 11, 2021
4a9132d
Merge branch 'main' into rss
6543 Sep 12, 2021
fb27ee3
Merge branch 'main' into rss
6543 Sep 14, 2021
0d0e18f
Merge branch 'master' into rss
6543 Sep 20, 2021
af9d9e2
use accept header too
6543 Sep 20, 2021
b667943
Merge branch 'master' into rss
6543 Sep 21, 2021
3cc6cba
call it feed not rss
6543 Sep 21, 2021
8866ddf
Merge branch 'main' into rss
6543 Sep 23, 2021
1909375
Merge branch 'master' into rss
6543 Sep 25, 2021
d15b238
Merge branch 'main' into rss
6543 Sep 29, 2021
4cf34a0
Merge branch 'main' into rss
6543 Sep 29, 2021
f6e582a
Merge branch 'main' into rss
6543 Oct 3, 2021
eeaa982
Merge branch 'main' into rss
6543 Oct 8, 2021
c13753a
Merge branch 'main' into rss
6543 Oct 8, 2021
5c11530
Merge branch 'master' into rss
6543 Oct 14, 2021
4e979cc
return error & use strconv
6543 Oct 14, 2021
3fb765a
Merge branch 'main' into rss
lunny Oct 15, 2021
eb0fea6
Merge branch 'main' into rss
6543 Oct 15, 2021
bc6d3a1
Merge branch 'main' into rss
6543 Oct 15, 2021
090233c
Merge branch 'main' into rss
6543 Oct 16, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ADD org rss as todo
  • Loading branch information
6543 committed Sep 9, 2021
commit f4aad737786ae239886d55ba9ef87d97a6b751e1
9 changes: 9 additions & 0 deletions routers/web/user/profile.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,15 @@ func Profile(ctx *context.Context) {
}

if ctxUser.IsOrganization() {
/*
// TODO: enable after retrieveFeeds() do handle org correctly
// Show Org RSS feed
if isShowRSS != "" {
ShowRSS(ctx, ctxUser, isShowRSS)
return
}
*/

org.Home(ctx)
return
}
Expand Down