@hedhog/admin 0.0.112 → 0.0.114
Sign up to get free protection for your applications and to get access to all the features.
- package/hedhog.yaml +37 -0
- package/package.json +2 -2
package/hedhog.yaml
CHANGED
@@ -132,6 +132,19 @@ data:
|
|
132
132
|
method: PATCH
|
133
133
|
- url: /locale
|
134
134
|
method: DELETE
|
135
|
+
- url: /file
|
136
|
+
method: GET
|
137
|
+
- url: /file/:id
|
138
|
+
method: GET
|
139
|
+
- url: /file/download/:token
|
140
|
+
method: GET
|
141
|
+
- url: /file/download/:id
|
142
|
+
method: PUT
|
143
|
+
- url: /file
|
144
|
+
method: POST
|
145
|
+
- url: /file
|
146
|
+
method: DELETE
|
147
|
+
|
135
148
|
menu:
|
136
149
|
- url: /
|
137
150
|
icon: dashboard
|
@@ -1550,3 +1563,27 @@ tables:
|
|
1550
1563
|
- type: created_at
|
1551
1564
|
- type: updated_at
|
1552
1565
|
ifNotExists: true
|
1566
|
+
|
1567
|
+
setting_user:
|
1568
|
+
columns:
|
1569
|
+
- name: user_id
|
1570
|
+
type: fk
|
1571
|
+
isPrimary: true
|
1572
|
+
references:
|
1573
|
+
table: user
|
1574
|
+
column: id
|
1575
|
+
onDelete: CASCADE
|
1576
|
+
- name: setting_id
|
1577
|
+
type: fk
|
1578
|
+
isPrimary: true
|
1579
|
+
references:
|
1580
|
+
table: setting
|
1581
|
+
column: id
|
1582
|
+
onDelete: CASCADE
|
1583
|
+
- name: value
|
1584
|
+
length: 1023
|
1585
|
+
isNullable: true
|
1586
|
+
- type: created_at
|
1587
|
+
- type: updated_at
|
1588
|
+
ifNotExists: true
|
1589
|
+
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@hedhog/admin",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.114",
|
4
4
|
"private": false,
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"scripts": {
|
@@ -21,7 +21,7 @@
|
|
21
21
|
"license": "MIT",
|
22
22
|
"description": "",
|
23
23
|
"devDependencies": {
|
24
|
-
"@hedhog/file": "^0.0.
|
24
|
+
"@hedhog/file": "^0.0.27",
|
25
25
|
"@hedhog/mail": "latest",
|
26
26
|
"@hedhog/locale": "^0.0.18",
|
27
27
|
"@hedhog/pagination": "^0.0.17",
|