@rmdes/indiekit-endpoint-homepage 1.0.14 → 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 +24 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -245,6 +245,14 @@ export default class HomepageEndpoint {
|
|
|
245
245
|
defaultConfig: {},
|
|
246
246
|
configSchema: {},
|
|
247
247
|
},
|
|
248
|
+
{
|
|
249
|
+
id: "feedland",
|
|
250
|
+
label: "FeedLand",
|
|
251
|
+
description: "FeedLand blogroll widget",
|
|
252
|
+
icon: "rss",
|
|
253
|
+
defaultConfig: {},
|
|
254
|
+
configSchema: {},
|
|
255
|
+
},
|
|
248
256
|
{
|
|
249
257
|
id: "webmentions",
|
|
250
258
|
label: "Webmentions",
|
|
@@ -253,6 +261,14 @@ export default class HomepageEndpoint {
|
|
|
253
261
|
defaultConfig: {},
|
|
254
262
|
configSchema: {},
|
|
255
263
|
},
|
|
264
|
+
{
|
|
265
|
+
id: "recent-comments",
|
|
266
|
+
label: "Recent Comments",
|
|
267
|
+
description: "Latest IndieAuth comments",
|
|
268
|
+
icon: "message-square",
|
|
269
|
+
defaultConfig: {},
|
|
270
|
+
configSchema: {},
|
|
271
|
+
},
|
|
256
272
|
{
|
|
257
273
|
id: "custom-html",
|
|
258
274
|
label: "Custom Content",
|
|
@@ -315,6 +331,14 @@ export default class HomepageEndpoint {
|
|
|
315
331
|
defaultConfig: {},
|
|
316
332
|
configSchema: {},
|
|
317
333
|
},
|
|
334
|
+
{
|
|
335
|
+
id: "recent-comments",
|
|
336
|
+
label: "Recent Comments",
|
|
337
|
+
description: "Latest IndieAuth comments",
|
|
338
|
+
icon: "message-square",
|
|
339
|
+
defaultConfig: {},
|
|
340
|
+
configSchema: {},
|
|
341
|
+
},
|
|
318
342
|
];
|
|
319
343
|
}
|
|
320
344
|
|
package/package.json
CHANGED