@things-factory/operato-board 6.1.157 → 6.1.158
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,42 @@
|
|
|
1
|
+
## 단말장치(appliance) 인증토큰의 유효기간을 설정하는 방법이 있나요 ?
|
|
2
|
+
|
|
3
|
+
- 오페라토보드 어플리케이션에서 인증토큰의 유효기간 설정을 제공하고 있습니다. 디폴트 유효기간을 1년입니다.
|
|
4
|
+
- 인증토큰 유효기간 설정은 설치 폴더의 config/config.production.js 파일에서 설정할 수 있습니다.
|
|
5
|
+
- 설정 키는 "applianceJwtExpiresIn" 이면, 기본 설정값은 '1y' (1년)입니다.
|
|
6
|
+
|
|
7
|
+
```
|
|
8
|
+
module.exports = {
|
|
9
|
+
password: {
|
|
10
|
+
lowerCase: true,
|
|
11
|
+
upperCase: false,
|
|
12
|
+
digit: true,
|
|
13
|
+
specialCharacter: true,
|
|
14
|
+
allowRepeat: true,
|
|
15
|
+
useTightPattern: true,
|
|
16
|
+
useLoosePattern: false,
|
|
17
|
+
tightCharacterLength: 8,
|
|
18
|
+
looseCharacterLength: 15,
|
|
19
|
+
history: 2,
|
|
20
|
+
defaultPassword: false
|
|
21
|
+
},
|
|
22
|
+
accessTokenCookieKey: 'access_token',
|
|
23
|
+
...,
|
|
24
|
+
applianceJwtExpiresIn: '1y',
|
|
25
|
+
...
|
|
26
|
+
}
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
- 설정값은 다음과 같은 여러 형태로 가능합니다.[참조](https://github.com/vercel/ms)
|
|
30
|
+
|
|
31
|
+
```
|
|
32
|
+
2 days // 2일
|
|
33
|
+
1d // 하루
|
|
34
|
+
10h // 10시간
|
|
35
|
+
2.5 hrs // 2.5시간
|
|
36
|
+
2h // 2시간
|
|
37
|
+
1m // 1분
|
|
38
|
+
5s // 5초
|
|
39
|
+
1y // 1년
|
|
40
|
+
10y // 10년
|
|
41
|
+
100 // 100 미리초
|
|
42
|
+
```
|
package/helps/faq.md
CHANGED
|
@@ -71,6 +71,10 @@ A: [테이블 셀 높이/넓이 자동 조정](./faq/tablecell-size-adjusting.md
|
|
|
71
71
|
|
|
72
72
|
A: [보드 복사, 임포트/익스포트](./faq/board-duplicating.md)
|
|
73
73
|
|
|
74
|
+
## 질문 15: 단말장치(appliance) 인증토큰의 유효기간을 설정하는 방법이 있나요 ?
|
|
75
|
+
|
|
76
|
+
A: [단말장치 인증토큰 유효기간](./faq/appliance-access-token-expiration.md)
|
|
77
|
+
|
|
74
78
|
---
|
|
75
79
|
|
|
76
80
|
## 운영관련 질문들
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/operato-board",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.158",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -86,9 +86,9 @@
|
|
|
86
86
|
"@operato/styles": "^1.0.0",
|
|
87
87
|
"@operato/utils": "^1.0.1",
|
|
88
88
|
"@things-factory/apptool-ui": "^6.1.156",
|
|
89
|
-
"@things-factory/auth-ui": "^6.1.
|
|
89
|
+
"@things-factory/auth-ui": "^6.1.158",
|
|
90
90
|
"@things-factory/board-service": "^6.1.156",
|
|
91
|
-
"@things-factory/board-ui": "^6.1.
|
|
91
|
+
"@things-factory/board-ui": "^6.1.158",
|
|
92
92
|
"@things-factory/context-ui": "^6.1.156",
|
|
93
93
|
"@things-factory/export-ui": "^6.1.156",
|
|
94
94
|
"@things-factory/fav-base": "^6.1.156",
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
"@things-factory/pdf": "^6.1.154",
|
|
112
112
|
"@things-factory/print-service": "^6.1.156",
|
|
113
113
|
"@things-factory/print-ui": "^6.1.156",
|
|
114
|
-
"@things-factory/resource-ui": "^6.1.
|
|
114
|
+
"@things-factory/resource-ui": "^6.1.158",
|
|
115
115
|
"@things-factory/scene-google-map": "^6.1.154",
|
|
116
116
|
"@things-factory/setting-ui": "^6.1.156",
|
|
117
117
|
"@things-factory/shell": "^6.1.156",
|
|
@@ -121,5 +121,5 @@
|
|
|
121
121
|
"@things-factory/board-test": "^6.1.156",
|
|
122
122
|
"@things-factory/builder": "^6.1.154"
|
|
123
123
|
},
|
|
124
|
-
"gitHead": "
|
|
124
|
+
"gitHead": "d7c68dc93ff2938b44be97e07c9bdd8c1ecc6e85"
|
|
125
125
|
}
|