2018-03-14 01:14:57 +01:00
|
|
|
<DynamicPageBanner title="Blocked users" icon="#fa-ban" />
|
|
|
|
<AccountsListPage :accountsFetcher />
|
|
|
|
<script>
|
|
|
|
import AccountsListPage from '.././_components/AccountsListPage.html'
|
|
|
|
import { store } from '.././_store/store'
|
|
|
|
import { getBlockedAccounts } from '.././_api/blockedAndMuted'
|
|
|
|
import DynamicPageBanner from '.././_components/DynamicPageBanner.html'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
computed: {
|
2018-04-22 20:20:05 +02:00
|
|
|
accountsFetcher: ($currentInstance, $accessToken) => () => getBlockedAccounts($currentInstance, $accessToken)
|
2018-03-14 01:14:57 +01:00
|
|
|
},
|
|
|
|
store: () => store,
|
|
|
|
components: {
|
|
|
|
AccountsListPage,
|
|
|
|
DynamicPageBanner
|
|
|
|
}
|
|
|
|
}
|
2018-04-22 20:20:05 +02:00
|
|
|
</script>
|