forked from nutomic/joinpeertube
Merge branch 'feature/filter-nsfw-instances' into 'master'
Hide instances displaying nsfw from reg table See merge request framasoft/peertube/joinpeertube!48
This commit is contained in:
commit
30963bc89a
3 changed files with 12 additions and 6 deletions
|
@ -29,9 +29,9 @@
|
|||
<img :src="`${$root['/']}img/notebook.jpg`" class="img-responsive" alt="">
|
||||
</div>
|
||||
<p>
|
||||
<a href="#getting-started" v-html="$t('home.intro.getting-started')"></a>
|
||||
<a href="#how-it-works" v-html="$t('home.intro.how-it-works')"></a>
|
||||
</p>
|
||||
<a href="#getting-started" v-html="$t('home.intro.getting-started')"></a>
|
||||
<a href="#how-it-works" v-html="$t('home.intro.how-it-works')"></a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
|
|
@ -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