Browse Source

Show repos acording to user/organization

for-closed-social
Andrey Nering 7 years ago
parent
commit
dc2b28ed76
3 changed files with 7 additions and 2 deletions
  1. +1
    -1
      public/js/index.js
  2. +3
    -1
      routers/api/v1/repo/repo.go
  3. +3
    -0
      templates/base/head.tmpl

+ 1
- 1
public/js/index.js View File

@ -1661,7 +1661,7 @@ function initDashboardSearch() {
repos: [],
searchQuery: '',
suburl: document.querySelector('meta[name=_suburl]').content,
uid: document.querySelector('meta[name=_uid]').content
uid: document.querySelector('meta[name=_context_uid]').content
},
mounted: function() {

+ 3
- 1
routers/api/v1/repo/repo.go View File

@ -32,7 +32,9 @@ func Search(ctx *context.APIContext) {
Keyword: strings.Trim(ctx.Query("q"), " "),
OwnerID: ctx.QueryInt64("uid"),
PageSize: convert.ToCorrectPageSize(ctx.QueryInt("limit")),
Searcher: ctx.User,
}
if ctx.User.ID == opts.OwnerID {
opts.Searcher = ctx.User
}
// Check visibility.

+ 3
- 0
templates/base/head.tmpl View File

@ -14,6 +14,9 @@
{{if .IsSigned}}
<meta name="_uid" content="{{.SignedUser.ID}}" />
{{end}}
{{if .ContextUser}}
<meta name="_context_uid" content="{{.ContextUser.ID}}" />
{{end}}
{{if .GoGetImport}}
<meta name="go-import" content="{{.GoGetImport}} git {{.CloneLink.HTTPS}}">
<meta name="go-source" content="{{.GoGetImport}} _ {{.GoDocDirectory}} {{.GoDocFile}}">

Loading…
Cancel
Save