We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a9cc91 commit b6d5291Copy full SHA for b6d5291
src/UserManagerEvents.js
@@ -0,0 +1,20 @@
1
+// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
2
+// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
3
+
4
+import Log from './Log';
5
+import AccessTokenEvents from './AccessTokenEvents';
6
7
+export default class UserManagerEvents extends AccessTokenEvents {
8
9
+ constructor(settings) {
10
+ super(settings);
11
+ }
12
13
+ init(user) {
14
+ super.init(user);
15
16
17
+ cancel() {
18
+ super.cancel();
19
20
+}
0 commit comments