forked from nutomic/joinpeertube
Hide instances displaying nsfw from reg table
This commit is contained in:
parent
852e1ba317
commit
7f684a4e0f
3 changed files with 12 additions and 6 deletions
|
@ -39,7 +39,7 @@
|
|||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a :href="$root.link.instancesPT"
|
||||
<a href="#register"
|
||||
v-html="$t('menu.instances')">
|
||||
</a>
|
||||
</li>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div >
|
||||
<div>
|
||||
<div v-if="error" id="instances-list-error" class="alert alert-danger" v-html="$t('home.getting-started.register.error')"></div>
|
||||
|
||||
<div id="instances-list" class="list-group" >
|
||||
|
@ -21,6 +21,11 @@
|
|||
<li v-if="instance.userVideoQuota">{{ instance.userVideoQuotaBytes }} {{ $t('home.getting-started.register.instances.per_user') }}</li>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- TODO: add link to instances list webpage -->
|
||||
<!--<a v-bind:href="$root.link.instancesPT" class="list-group-item" target="_blank">-->
|
||||
<!--{{ $t('home.getting-started.register.instances.see-more') }}-->
|
||||
<!--</a>-->
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
@ -72,7 +77,8 @@ export default {
|
|||
start: 0,
|
||||
count: 100,
|
||||
signup: true,
|
||||
healthy: true
|
||||
healthy: true,
|
||||
nsfwPolicy: [ 'do_not_list', 'blur' ]
|
||||
}
|
||||
}
|
||||
axios('https://instances.joinpeertube.org/api/v1/instances', options)
|
||||
|
|
Loading…
Reference in a new issue