How to get a list of spaces that are accessible by anonymous users
プラットフォームについて: Data Center のみ。 - This article only applies to Atlassian apps on the Data Center プラットフォーム。
この KB は Data Center バージョンの製品用に作成されています。Data Center 固有ではない機能の Data Center KB は、製品のサーバー バージョンでも動作する可能性はありますが、テストは行われていません。 Server* 製品のサポートは 2024 年 2 月 15 日に終了しました。Server 製品を実行している場合は、 アトラシアン Server サポート終了 のお知らせにアクセスして、移行オプションを確認してください。
*Fisheye および Crucible は除く
要約
To get a list of spaces that are accessible by anonymous users, from the database.
ソリューション
ℹ️ The following queries have been tested in MySQL and PostgreSQL:
SELECT SPACENAME
FROM SPACES
WHERE SPACEID IN (SELECT SPACEID
FROM SPACEPERMISSIONS
WHERE PERMTYPE = 'VIEWSPACE'
AND PERMGROUPNAME IS NULL
AND PERMUSERNAME IS NULL
AND PERMALLUSERSSUBJECT IS NULL);⚠️ Please notice that the space will only be effectively accessible by anonymous users if the Site has the anonymous access setting enabled. For more info on how to enable anonymous access at the site level, please check this document:
この内容はお役に立ちましたか?