@hedhog/admin 0.0.112 → 0.0.113
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 +1 -1
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
|
+
|