@webbio/strapi-plugin-page-builder 0.12.0-platform → 0.12.1-platform
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.
- package/dist/package.json +1 -1
- package/dist/server/controllers/index.js +3 -1
- package/dist/server/controllers/user-category.js +4 -0
- package/dist/server/routes/index.js +6 -1
- package/dist/server/routes/user-category.js +4 -0
- package/dist/server/services/index.js +3 -1
- package/dist/server/services/user-category.js +4 -0
- package/dist/tsconfig.server.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/server/controllers/index.ts +3 -1
- package/server/controllers/user-category.ts +3 -0
- package/server/routes/index.ts +4 -1
- package/server/routes/user-category.ts +3 -0
- package/server/services/index.ts +3 -1
- package/server/services/user-category.ts +3 -0
package/package.json
CHANGED
|
@@ -5,6 +5,7 @@ import template from './template';
|
|
|
5
5
|
import platform from './platform';
|
|
6
6
|
import sitemap from './sitemap';
|
|
7
7
|
import privateContent from './private-content';
|
|
8
|
+
import userCategory from './user-category';
|
|
8
9
|
|
|
9
10
|
export default {
|
|
10
11
|
page,
|
|
@@ -13,5 +14,6 @@ export default {
|
|
|
13
14
|
template,
|
|
14
15
|
platform,
|
|
15
16
|
sitemap,
|
|
16
|
-
'private-content': privateContent
|
|
17
|
+
'private-content': privateContent,
|
|
18
|
+
'user-category': userCategory
|
|
17
19
|
};
|
package/server/routes/index.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import userCategory from './user-category';
|
|
2
|
+
|
|
1
3
|
const routes = {
|
|
2
4
|
'private-content': {
|
|
3
5
|
type: 'content-api',
|
|
@@ -106,7 +108,8 @@ const routes = {
|
|
|
106
108
|
handler: 'sitemap.generate'
|
|
107
109
|
}
|
|
108
110
|
]
|
|
109
|
-
}
|
|
111
|
+
},
|
|
112
|
+
'user-category': userCategory
|
|
110
113
|
};
|
|
111
114
|
|
|
112
115
|
export default routes;
|
package/server/services/index.ts
CHANGED
|
@@ -7,6 +7,7 @@ import platform from './platform';
|
|
|
7
7
|
import sitemap from './sitemap';
|
|
8
8
|
import email from './email';
|
|
9
9
|
import privateContent from './private-content';
|
|
10
|
+
import userCategory from './user-category';
|
|
10
11
|
|
|
11
12
|
export default {
|
|
12
13
|
page,
|
|
@@ -17,5 +18,6 @@ export default {
|
|
|
17
18
|
platform,
|
|
18
19
|
sitemap,
|
|
19
20
|
email,
|
|
20
|
-
'private-content': privateContent
|
|
21
|
+
'private-content': privateContent,
|
|
22
|
+
'user-category': userCategory
|
|
21
23
|
};
|