+1
This commit is contained in:
parent
ccbd040741
commit
1274ad6b0d
3 changed files with 5 additions and 2 deletions
|
@ -1,3 +1,6 @@
|
||||||
|
# 2.1.5+1
|
||||||
|
* Fix error in popup page.
|
||||||
|
|
||||||
# 2.1.5
|
# 2.1.5
|
||||||
* Modify `_apply` to honor an existing `User` over `Future<User>`.
|
* Modify `_apply` to honor an existing `User` over `Future<User>`.
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ AngelAuthCallback confirmPopupAuthentication({String eventName = 'token'}) {
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<title>Authentication Success</title>
|
<title>Authentication Success</title>
|
||||||
<script>
|
<script>
|
||||||
var ev = CustomEvent($evt, $detail);
|
var ev = new CustomEvent($evt, $detail);
|
||||||
window.opener.dispatchEvent(ev);
|
window.opener.dispatchEvent(ev);
|
||||||
window.close();
|
window.close();
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
name: angel_auth
|
name: angel_auth
|
||||||
description: A complete authentication plugin for Angel. Includes support for stateless JWT tokens, Basic Auth, and more.
|
description: A complete authentication plugin for Angel. Includes support for stateless JWT tokens, Basic Auth, and more.
|
||||||
version: 2.1.5
|
version: 2.1.5+1
|
||||||
author: Tobe O <thosakwe@gmail.com>
|
author: Tobe O <thosakwe@gmail.com>
|
||||||
homepage: https://github.com/angel-dart/angel_auth
|
homepage: https://github.com/angel-dart/angel_auth
|
||||||
environment:
|
environment:
|
||||||
|
|
Loading…
Reference in a new issue