6 | You are signed in as: 7 |
8 | 9 |10 | Id token 11 |
12 |13 | expires {{ new Date(oidcIdTokenExp).toISOString() }} 14 |
15 | 16 | 17 |18 | 21 |
22 |24 | You are not signed in 25 |
26 |27 | Silent renew is in progress... 28 |
29 | 30 | 31 | 54 | 55 | 67 | -------------------------------------------------------------------------------- /config/oidc.js: -------------------------------------------------------------------------------- 1 | export const oidcSettings = { 2 | authority: 'https://accounts.google.com', 3 | clientId: '459300396575-3ruj8l8jn69pcgst8rgkqnk6g43gbc78.apps.googleusercontent.com', 4 | redirectUri: 'http://localhost:3000/oidc-callback', 5 | responseType: 'id_token token', 6 | scope: 'openid email', 7 | automaticSilentRenew: true, 8 | silentRedirectUri: 'http://localhost:3000/silent-renew-oidc.html' 9 | } 10 | -------------------------------------------------------------------------------- /layouts/README.md: -------------------------------------------------------------------------------- 1 | # LAYOUTS 2 | 3 | **This directory is not required, you can delete it if you don't want to use it.** 4 | 5 | This directory contains your Application Layouts. 6 | 7 | More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/views#layouts). 8 | -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- 1 | 2 |