1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-22 16:24:17 +02:00

Feat: UGCの公開範囲設定機能 (#15938)

* wip

* Update CHANGELOG.md

* wip

* wip

* Update show.ts
This commit is contained in:
syuilo
2025-05-09 17:44:35 +09:00
committed by GitHub
parent 8c2ab25e5f
commit ebf291084f
12 changed files with 144 additions and 6 deletions

View File

@@ -8780,6 +8780,8 @@ export type operations = {
software: string;
versionRange: string;
}[];
/** @enum {string} */
ugcVisibilityForVisitor: 'all' | 'local' | 'none';
};
};
};
@@ -11450,6 +11452,8 @@ export type operations = {
software: string;
versionRange: string;
}[];
/** @enum {string} */
ugcVisibilityForVisitor?: 'all' | 'local' | 'none';
};
};
};