ember-auth-session-dummy-source 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/dist/ember-auth-session-dummy.js +10 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3931cba137931a8da0d35b33e5ac2717e3bd6c13
|
4
|
+
data.tar.gz: 8f0a357f16de89fa6ba6db778d44a80e93270671
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8d8eeac1d9b6c55d1f6a4309b5bac5a092af0af1d1e75b0e6371e34b4bd161324eef58dcf636026b5738ccce53264261d704bb55800a6e99a299cdb9da82a16b
|
7
|
+
data.tar.gz: 11ac055812f80067f15a70b8fc9c9a580b1f2b63c326cf39ea0341d2f2f8572a77ec257189c8aee95082da331c614193d6bb8d2de61179806728a7332bf343b2
|
@@ -1,11 +1,19 @@
|
|
1
1
|
// Generated by EmberScript 0.0.7
|
2
2
|
var get$ = Ember.get;
|
3
3
|
Em.onLoad('Ember.Application', function (application) {
|
4
|
-
|
4
|
+
application.initializer({
|
5
5
|
name: 'ember-auth.session.dummy',
|
6
6
|
before: 'ember-auth-load',
|
7
7
|
initialize: function (container, app) {
|
8
|
-
|
8
|
+
app.register('authSession:dummy', get$(get$(Em, 'Auth'), 'DummyAuthSession'), { singleton: true });
|
9
|
+
return app.inject('authSession:dummy', 'auth', 'auth:main');
|
10
|
+
}
|
11
|
+
});
|
12
|
+
return application.initializer({
|
13
|
+
name: 'ember-auth.session.dummy-load',
|
14
|
+
after: 'ember-auth-load',
|
15
|
+
initialize: function (container, app) {
|
16
|
+
return container.lookup('authSession:dummy');
|
9
17
|
}
|
10
18
|
});
|
11
19
|
});// Generated by EmberScript 0.0.7
|