- useConnections composable wrapping all /api/connections endpoints - Connections page with suggestions, filters, and connection management - Pending connection count badge in sidebar navigation - peer-support.vue now redirects to /connections
12 lines
209 B
Vue
12 lines
209 B
Vue
<template>
|
|
<div></div>
|
|
</template>
|
|
|
|
<script setup>
|
|
// Redirect to connections page
|
|
definePageMeta({
|
|
middleware: defineNuxtRouteMiddleware(() => {
|
|
return navigateTo("/connections");
|
|
}),
|
|
});
|
|
</script>
|