@rmdes/indiekit-endpoint-homepage 1.0.15 → 1.0.16
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/index.js +16 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -261,6 +261,14 @@ export default class HomepageEndpoint {
|
|
|
261
261
|
defaultConfig: {},
|
|
262
262
|
configSchema: {},
|
|
263
263
|
},
|
|
264
|
+
{
|
|
265
|
+
id: "recent-comments",
|
|
266
|
+
label: "Recent Comments",
|
|
267
|
+
description: "Latest IndieAuth comments",
|
|
268
|
+
icon: "message-square",
|
|
269
|
+
defaultConfig: {},
|
|
270
|
+
configSchema: {},
|
|
271
|
+
},
|
|
264
272
|
{
|
|
265
273
|
id: "custom-html",
|
|
266
274
|
label: "Custom Content",
|
|
@@ -323,6 +331,14 @@ export default class HomepageEndpoint {
|
|
|
323
331
|
defaultConfig: {},
|
|
324
332
|
configSchema: {},
|
|
325
333
|
},
|
|
334
|
+
{
|
|
335
|
+
id: "recent-comments",
|
|
336
|
+
label: "Recent Comments",
|
|
337
|
+
description: "Latest IndieAuth comments",
|
|
338
|
+
icon: "message-square",
|
|
339
|
+
defaultConfig: {},
|
|
340
|
+
configSchema: {},
|
|
341
|
+
},
|
|
326
342
|
];
|
|
327
343
|
}
|
|
328
344
|
|
package/package.json
CHANGED