mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
first steps introducing user search
This commit is contained in:
parent
c5c6592964
commit
7e26d6373d
BIN
frontend/public/img/svg/loupe.png
Normal file
BIN
frontend/public/img/svg/loupe.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.3 KiB |
@ -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">
|
||||
|
||||
@ -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) {
|
||||
|
||||
@ -80,6 +80,12 @@ const routes = [
|
||||
pageTitle: 'information',
|
||||
},
|
||||
},
|
||||
{
|
||||
path: '/usersearch',
|
||||
redirect: (to) => {
|
||||
return { path: '/login' }
|
||||
},
|
||||
},
|
||||
// {
|
||||
// path: '/storys',
|
||||
// component: () => import('@/pages/TopStorys'),
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user