added oauth refresh token support

This commit is contained in:
Danny Coates
2020-07-24 18:11:50 -07:00
parent ce507c557f
commit f3a1fde07f
9 changed files with 120 additions and 32 deletions

View File

@@ -53,13 +53,17 @@ module.exports = function(trigger) {
type="submit"
/>
</form>
<button
class="my-3 link-blue font-medium"
title="${state.translate('deletePopupCancel')}"
onclick=${cancel}
>
${state.translate('deletePopupCancel')}
</button>
${state.user.loginRequired
? ''
: html`
<button
class="my-3 link-blue font-medium"
title="${state.translate('deletePopupCancel')}"
onclick=${cancel}
>
${state.translate('deletePopupCancel')}
</button>
`}
</section>
</send-signup-dialog>
`;