@universal-packages/core-express-controllers-authentication 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@universal-packages/core-express-controllers-authentication",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Express Controllers Authentication universal-core module abstraction.",
5
5
  "author": "David De Anda <david@universal-packages.com> (https://github.com/universal-packages)",
6
6
  "license": "MIT",
@@ -0,0 +1,5 @@
1
+ default:
2
+ dynamicsLocation: './src/dynamics'
3
+
4
+ development:
5
+ secret: development-secret
File without changes
@@ -0,0 +1,9 @@
1
+ import { CoreEnvironment } from "@universal-packages/core";
2
+ // import User from './'
3
+
4
+ export default class AuthenticationEnvironment extends CoreEnvironment {
5
+ public afterModulesLoad() {
6
+ // Set here the Authenticatable class/model/entity
7
+ // authenticationSubject.setAuthenticatable(User)
8
+ }
9
+ }
@@ -0,0 +1,5 @@
1
+ default:
2
+ dynamicsLocation: './src/dynamics'
3
+
4
+ development:
5
+ secret: development-secret
File without changes
@@ -0,0 +1,9 @@
1
+ import { CoreEnvironment } from "@universal-packages/core";
2
+ // import User from './'
3
+
4
+ export default class AuthenticationEnvironment extends CoreEnvironment {
5
+ public afterModulesLoad(): void {
6
+ // Set here the Authenticatable class/model/entity
7
+ // authenticationSubject.setAuthenticatable(User)
8
+ }
9
+ }