@things-factory/auth-azure-ad 6.2.84 → 6.2.88

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.
@@ -0,0 +1,29 @@
1
+ # sso/azure
2
+
3
+ SSO와 관련된 설정은 'sso' 컨피규레이션 아래에 설정된다.
4
+
5
+ sso/azure 설정은 Azure Active Directory의 SSO 와 관련된 설정이다.
6
+
7
+ ## 예시
8
+
9
+ ```
10
+ module.exports = {
11
+ sso: {
12
+ azure: {
13
+ title: 'Microsoft Entra ID',
14
+ link: '/auth/signin-with-azure', // signin-link
15
+ config: {
16
+ clientID: 'your_client_id',
17
+ clientSecret: 'your_client_secret',
18
+ identityMetadata: 'https://login.microsoftonline.com/your_tenant_id/v2.0/.well-known/openid-configuration',
19
+ responseType: 'code id_token',
20
+ responseMode: 'form_post',
21
+ redirectUrl: 'http://localhost:3000/auth/openid/return',
22
+ allowHttpForRedirectUrl: true,
23
+ validateIssuer: false,
24
+ passReqToCallback: false
25
+ }
26
+ }
27
+ }
28
+ }
29
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/auth-azure-ad",
3
- "version": "6.2.84",
3
+ "version": "6.2.88",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "dist-client/index.js",
6
6
  "things-factory": true,
@@ -29,10 +29,10 @@
29
29
  "dependencies": {
30
30
  "@operato/graphql": "^1.0.0",
31
31
  "@operato/shell": "^1.0.0",
32
- "@things-factory/auth-base": "^6.2.84",
33
- "@things-factory/shell": "^6.2.84",
32
+ "@things-factory/auth-base": "^6.2.88",
33
+ "@things-factory/shell": "^6.2.88",
34
34
  "passport": "^0.6.0",
35
35
  "passport-azure-ad": "^4.3.5"
36
36
  },
37
- "gitHead": "3c272e989acc14bbd02f4ec79624dfd7dc4e6acd"
37
+ "gitHead": "700ee6ac193bb6b6bc4f1a569c3ca046a7a049ee"
38
38
  }