Retrieve user email type preferences from the database
プラットフォームについて: サーバーと Data Center のみ。この記事は、サーバーおよび Data Center プラットフォームのアトラシアン製品にのみ適用されます。
目的
While you can set the default email type globally in Jira, users have the ability to override this setting within their own preferences. Should you need to retrieve a list of how each user has configured this setting, you can do so via the following SQL example.
ソリューション
重要な注意事項
This query only returns users who have explicitly set an email type preference. If a user is not returned, they are inheriting the default global value.
select
au.lower_user_name
,ps.propertyvalue
from app_user au
join propertyentry pe
on au.id = pe.entity_id
and pe.entity_name = 'ApplicationUser'
and pe.property_key = 'user.notifications.mimetype'
join propertystring ps
on pe.id = ps.id;
最終更新日 2020 年 11 月 23 日
Powered by Confluence and Scroll Viewport.