|
|
|
@ -1,10 +1,13 @@
|
|
|
|
|
package explore |
|
|
|
|
|
|
|
|
|
import ( |
|
|
|
|
"code.gitea.io/gitea/models/db" |
|
|
|
|
user_model "code.gitea.io/gitea/models/user" |
|
|
|
|
"code.gitea.io/gitea/modules/base" |
|
|
|
|
"code.gitea.io/gitea/modules/context" |
|
|
|
|
"code.gitea.io/gitea/modules/setting" |
|
|
|
|
"net/http" |
|
|
|
|
"code.gitea.io/gitea/modules/structs" |
|
|
|
|
"code.gitea.io/gitea/modules/util" |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
const ( |
|
|
|
@ -18,5 +21,12 @@ func Competences(ctx *context.Context) {
|
|
|
|
|
ctx.Data["PageIsExplore"] = true |
|
|
|
|
ctx.Data["PageIsExploreCompetences"] = true |
|
|
|
|
|
|
|
|
|
ctx.HTML(http.StatusOK, tplExploreCompetences) |
|
|
|
|
RenderUserSearch(ctx, &user_model.SearchUserOptions{ |
|
|
|
|
Actor: ctx.User, |
|
|
|
|
Type: user_model.UserTypeIndividual, |
|
|
|
|
ListOptions: db.ListOptions{PageSize: setting.UI.ExplorePagingNum}, |
|
|
|
|
IsActive: util.OptionalBoolTrue, |
|
|
|
|
Visible: []structs.VisibleType{structs.VisibleTypePublic, structs.VisibleTypeLimited, structs.VisibleTypePrivate}, |
|
|
|
|
}, tplExploreCompetences) |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|