-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
196 lines (196 loc) · 5.97 KB
/
package.json
File metadata and controls
196 lines (196 loc) · 5.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
{
"id": "tools.moimz.imodules.modules.admin",
"icon": "xi xi-crown",
"title": {
"ko": "아이모듈 관리자"
},
"version": "4.0.0",
"description": {
"ko": "아이모듈을 관리하기 위한 통합 관리모듈입니다."
},
"author": {
"name": "Arzz",
"email": "arzz@arzz.com"
},
"homepage": "https://www.imodules.io",
"versionChecker": "https://api.moimz.com/download/latest",
"dependencies": {
"core": "4.0.0"
},
"language": "ko",
"global": true,
"theme": true,
"admin": true,
"configs": {
"theme": {
"type": "theme",
"category": "admin",
"default": "/modules/admin/default"
},
"use_whitelist": {
"type": "check",
"value": false
},
"whitelist": {
"type": "textarea",
"default": ""
}
},
"databases": {
"administrators": {
"columns": {
"member_id": {
"type": "int",
"comment": "회원고유값"
},
"language": {
"type": "char",
"length": 2,
"is_null": true,
"comment": "언어코드"
},
"color": {
"type": "enum",
"length": "'auto','light','dark'",
"default": "auto",
"comment": "컬러모드"
},
"scale": {
"type": "int",
"default": 16,
"comment": "폰트크기"
},
"navigation": {
"type": "json",
"is_null": true,
"comment": "네비게이션설정"
},
"permissions": {
"type": "json",
"is_null": true,
"comment": "권한"
}
},
"indexes": {
"member_id": "primary_key"
},
"comment": "아이모듈 관리자 목록"
},
"groups": {
"columns": {
"group_id": {
"type": "char",
"length": 36,
"comment": "그룹고유값"
},
"title": {
"type": "varchar",
"length": 50,
"comment": "그룹명"
},
"permissions": {
"type": "json",
"is_null": true,
"comment": "그룹권한"
},
"administrators": {
"type": "int",
"default": 0,
"comment": "인원"
}
},
"indexes": {
"group_id": "primary_key"
},
"comment": "아이모듈 관리자 그룹"
},
"group_administrators": {
"columns": {
"group_id": {
"type": "char",
"length": 36,
"comment": "그룹고유값"
},
"member_id": {
"type": "int",
"comment": "회원고유값"
},
"assigned_at": {
"type": "int",
"comment": "그룹할당일시"
}
},
"indexes": {
"group_id,member_id": "primary_key",
"member_id": "index",
"group_id": "index"
},
"comment": "아이모듈 관리자 그룹 소속회원"
},
"logs": {
"columns": {
"time": {
"type": "double",
"comment": "기록일시(마이크로타임)"
},
"member_id": {
"type": "int",
"comment": "회원고유값"
},
"response": {
"type": "enum",
"length": "'OK','FORBIDDEN'",
"default": "OK",
"comment": "응답결과"
},
"method": {
"type": "varchar",
"length": 6,
"comment": "접근방법"
},
"component_type": {
"type": "varchar",
"length": 10,
"comment": "기록이 발생한 컴포넌트종류"
},
"component_name": {
"type": "varchar",
"length": 50,
"comment": "기록이 발생한 컴포넌트명"
},
"url": {
"type": "varchar",
"length": 255,
"comment": "접근주소"
},
"params": {
"type": "text",
"is_null": true,
"comment": "접근매개변수"
},
"input": {
"type": "longtext",
"is_null": true,
"comment": "INPUT데이터"
},
"ip": {
"type": "varchar",
"length": 39,
"comment": "접근IP"
},
"agent": {
"type": "varchar",
"length": 255,
"comment": "접근브라우저"
}
},
"indexes": {
"time,member_id": "primary_key",
"member_id": "index",
"component_type,component_name": "index",
"ip": "index"
},
"comment": "아이모듈 관리자 기록"
}
}
}