first steps introducing user search

This commit is contained in:
Claus-Peter Huebner 2024-03-25 14:27:41 +01:00
parent c5c6592964
commit 7e26d6373d
4 changed files with 18 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -32,6 +32,10 @@
<b-img src="/img/svg/info.svg" height="20" class="svg-icon" />
<span class="ml-2">{{ $t('navigation.info') }}</span>
</b-nav-item>
<b-nav-item to="/usersearch" active-class="activeRoute">
<b-img src="/img/svg/loupe.png" height="20" class="svg-icon" />
<span class="ml-2">{{ $t('usersearch') }}</span>
</b-nav-item>
</b-nav>
<hr class="m-3" />
<b-nav vertical class="w-100">

View File

@ -19,6 +19,14 @@ export const verifyLogin = gql`
}
}
`
export const authenticateGmsUserSearch = gql`
query {
authenticateGmsUserSearch {
gmsPlaygroundUri
}
}
`
export const transactionsQuery = gql`
query($currentPage: Int = 1, $pageSize: Int = 25, $order: Order = DESC) {

View File

@ -80,6 +80,12 @@ const routes = [
pageTitle: 'information',
},
},
{
path: '/usersearch',
redirect: (to) => {
return { path: '/login' }
},
},
// {
// path: '/storys',
// component: () => import('@/pages/TopStorys'),