c8e5c79cfd
This is an alternative PR to #13687. Add `[ui.explore]` settings to allow restricting the explore pages to logged in users only and to disable the users explore page. The two proposed settings are: - `REQUIRE_SIGNIN_VIEW`: Only allows access to the explore pages if the user is signed in. Also restricts - `/api/v1/user/search` - `/api/v1/users/{username}` - `/api/v1/users/{username}/repos` - but does not restrict `/api/v1/users/{username}/heatmap` - `DISABLE_USERS_PAGE`: Disables the /explore/users page Fix #2908 Close #13687 Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: 6543 <6543@obermui.de>
18 lines
836 B
Handlebars
18 lines
836 B
Handlebars
<div class="ui secondary pointing tabular top attached borderless stackable menu new-menu navbar">
|
|
<a class="{{if .PageIsExploreRepositories}}active{{end}} item" href="{{AppSubUrl}}/explore/repos">
|
|
{{svg "octicon-repo"}} {{.i18n.Tr "explore.repos"}}
|
|
</a>
|
|
{{if not .UsersIsDisabled}}
|
|
<a class="{{if .PageIsExploreUsers}}active{{end}} item" href="{{AppSubUrl}}/explore/users">
|
|
{{svg "octicon-person"}} {{.i18n.Tr "explore.users"}}
|
|
</a>
|
|
{{end}}
|
|
<a class="{{if .PageIsExploreOrganizations}}active{{end}} item" href="{{AppSubUrl}}/explore/organizations">
|
|
{{svg "octicon-organization"}} {{.i18n.Tr "explore.organizations"}}
|
|
</a>
|
|
{{if .IsRepoIndexerEnabled}}
|
|
<a class="{{if .PageIsExploreCode}}active{{end}} item" href="{{AppSubUrl}}/explore/code">
|
|
{{svg "octicon-code"}} {{.i18n.Tr "explore.code"}}
|
|
</a>
|
|
{{end}}
|
|
</div>
|