匿名ユーザーがアクセスできるスペースのリストを取得する方法

お困りですか?

アトラシアン コミュニティをご利用ください。

コミュニティに質問

目的

To get a list of spaces that are accessible by anonymous users, from the database.

ソリューション

(info) 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);

(warning) 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: 

Last modified on Mar 21, 2024

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.