diff --git a/frontend/public/img/svg/loupe.png b/frontend/public/img/svg/loupe.png new file mode 100644 index 000000000..ab289e4ad Binary files /dev/null and b/frontend/public/img/svg/loupe.png differ diff --git a/frontend/src/components/Menu/Sidebar.vue b/frontend/src/components/Menu/Sidebar.vue index 1b18acc17..8f6176b03 100644 --- a/frontend/src/components/Menu/Sidebar.vue +++ b/frontend/src/components/Menu/Sidebar.vue @@ -32,6 +32,10 @@ {{ $t('navigation.info') }} + + + {{ $t('usersearch') }} +
diff --git a/frontend/src/graphql/queries.js b/frontend/src/graphql/queries.js index 9f961e402..87914ca6a 100644 --- a/frontend/src/graphql/queries.js +++ b/frontend/src/graphql/queries.js @@ -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) { diff --git a/frontend/src/routes/routes.js b/frontend/src/routes/routes.js index 869151618..57f8fdd32 100755 --- a/frontend/src/routes/routes.js +++ b/frontend/src/routes/routes.js @@ -80,6 +80,12 @@ const routes = [ pageTitle: 'information', }, }, + { + path: '/usersearch', + redirect: (to) => { + return { path: '/login' } + }, + }, // { // path: '/storys', // component: () => import('@/pages/TopStorys'),