@rmdes/indiekit-endpoint-homepage 1.0.15 → 1.0.17
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
|
@@ -261,6 +261,22 @@ 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
|
+
},
|
|
272
|
+
{
|
|
273
|
+
id: "fediverse-follow",
|
|
274
|
+
label: "Fediverse Follow",
|
|
275
|
+
description: "Follow button for fediverse instances",
|
|
276
|
+
icon: "globe",
|
|
277
|
+
defaultConfig: {},
|
|
278
|
+
configSchema: {},
|
|
279
|
+
},
|
|
264
280
|
{
|
|
265
281
|
id: "custom-html",
|
|
266
282
|
label: "Custom Content",
|
|
@@ -323,6 +339,14 @@ export default class HomepageEndpoint {
|
|
|
323
339
|
defaultConfig: {},
|
|
324
340
|
configSchema: {},
|
|
325
341
|
},
|
|
342
|
+
{
|
|
343
|
+
id: "recent-comments",
|
|
344
|
+
label: "Recent Comments",
|
|
345
|
+
description: "Latest IndieAuth comments",
|
|
346
|
+
icon: "message-square",
|
|
347
|
+
defaultConfig: {},
|
|
348
|
+
configSchema: {},
|
|
349
|
+
},
|
|
326
350
|
];
|
|
327
351
|
}
|
|
328
352
|
|
package/package.json
CHANGED