28 lines
		
	
	
		
			No EOL
		
	
	
		
			843 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			No EOL
		
	
	
		
			843 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <:Head>
 | ||
|   <title>Pinafore – Blocked users</title>
 | ||
| </:Head>
 | ||
| 
 | ||
| <Layout page='blocked'>
 | ||
|   <DynamicPageBanner title="Blocked users" icon="#fa-ban" />
 | ||
|   <AccountsListPage :accountsFetcher />
 | ||
| </Layout>
 | ||
| <script>
 | ||
|   import Layout from './_components/Layout.html'
 | ||
|   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: {
 | ||
|       statusId: params => params.statusId,
 | ||
|       accountsFetcher: ($currentInstance, $accessToken, statusId) => () => getBlockedAccounts($currentInstance, $accessToken, statusId)
 | ||
|     },
 | ||
|     store: () => store,
 | ||
|     components: {
 | ||
|       Layout,
 | ||
|       AccountsListPage,
 | ||
|       DynamicPageBanner
 | ||
|     }
 | ||
|   }
 | ||
| </script> |