Update message for sidebar repo-list setting (#2493)

This commit is contained in:
Naoki Takezoe
2020-07-28 22:38:10 +09:00
committed by GitHub
parent 81c0e2037f
commit b1c3ae4974
2 changed files with 4 additions and 4 deletions

View File

@@ -425,7 +425,7 @@ trait RepositoryService {
* @param repositoryUserName the repository owner (if None then returns all repositories which are visible for logged in user)
* @param withoutPhysicalInfo if true then the result does not include physical repository information such as commit count,
* branches and tags
* @param limit if true then result will include only repositories associated with the login account.
* @param limit if true then result will include only repositories owned by the login account. otherwise, result will be all visible repositories.
* @return the repository information which is sorted in descending order of lastActivityDate.
*/
def getVisibleRepositories(

View File

@@ -269,15 +269,15 @@
<!-- Sidebar -->
<!--====================================================================-->
<hr>
<label><span class="strong">Show Repositories in Sidebar</span></label>
<label><span class="strong">Show repositories in sidebar</span></label>
<fieldset>
<label class="radio">
<input type="radio" name="limitVisibleRepositories" value="false"@if(!context.settings.limitVisibleRepositories){ checked}>
<span class="strong">All</span> <span class="normal">- Show all repositories in sidebar.</span>
<span class="strong">All</span> <span class="normal">- Show all visible repositories in sidebar.</span>
</label>
<label class="radio">
<input type="radio" name="limitVisibleRepositories" value="true"@if(context.settings.limitVisibleRepositories){ checked}>
<span class="strong">Limited</span> <span class="normal">- Limit the visible repositories in sidebar.</span>
<span class="strong">Limited</span> <span class="normal">- Show only owned repositories in sidebar.</span>
</label>
</fieldset>
<script>