summaryrefslogtreecommitdiff
path: root/packages/frontend/src/store.ts
diff options
context:
space:
mode:
authorかっこかり <67428053+kakkokari-gtyih@users.noreply.github.com>2023-09-23 09:08:14 +0900
committerGitHub <noreply@github.com>2023-09-23 09:08:14 +0900
commit1924bd20bb294bf2fdec6df922b3ec663102ae7c (patch)
treec63daa3c61f8d65ef593a3deb2fb5d71a44da6fd /packages/frontend/src/store.ts
parent:art: (diff)
downloadmisskey-1924bd20bb294bf2fdec6df922b3ec663102ae7c.tar.gz
misskey-1924bd20bb294bf2fdec6df922b3ec663102ae7c.tar.bz2
misskey-1924bd20bb294bf2fdec6df922b3ec663102ae7c.zip
enhance(frontend): プラグインのソースコードを確認・コピーできるように (#11873)
* (add) plugin: view and copy source code * (fix) plugin permission ui * Update Changelog
Diffstat (limited to 'packages/frontend/src/store.ts')
-rw-r--r--packages/frontend/src/store.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/frontend/src/store.ts b/packages/frontend/src/store.ts
index 16483f0cf7..8a7ee62eff 100644
--- a/packages/frontend/src/store.ts
+++ b/packages/frontend/src/store.ts
@@ -381,6 +381,9 @@ export type Plugin = {
src: string | null;
version: string;
ast: any[];
+ author?: string;
+ description?: string;
+ permissions?: string[];
};
interface Watcher {