You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
How to get the projects that the currently logged in user can create issues?
@lamella If the user is logged in they can just click the create button and it will show all the projects that they are able to create an issue in.
My current dilemma is how to use java api to get these projects, and then select a project to create an issue in the custom vm page.
Do you know how to use java api to get these projects?
Thanks : )
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I use the getAllRoleActorsForUser api in RoleActorFactory to get all ProjectRoleActors of the currently logged in user. Then get the projectId based on these ProjectRoleActors and use "set" to deduplicate. Finally, use the hasPermission api in PermissionManager to confirm whether the user has permission to create an issue.
Cheers!
: )
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.