DEV: Add meta_topic_id plugin metadata (#23838)

For the admin plugin list we want to be able to link to
a meta topic for plugins, but we have no standard way to
do this at the moment. This adds support for meta_topic_id
alongside other plugin metadata like authors, URL etc,
that gets built into a Meta topic URL in the serializer.
This commit is contained in:
Martin Brennan
2023-10-10 10:16:13 +10:00
committed by GitHub
parent 00b1b88a86
commit b58f660cd2
5 changed files with 22 additions and 2 deletions

View File

@@ -21,6 +21,7 @@ export default class AdminPlugin {
this.name = args.name;
this.url = args.url;
this.version = args.version;
this.metaUrl = args.meta_url;
}
get settingCategoryName() {