Hi,
we've prepared several projects using type "Project Management".
Now all included issues are "Done".
thx
Volker
There's a few things most of us do:
@Volker ThielMy idea is to do some thing like this, rename the project/projects name(s) to some thing like this [Closed Project] IT project [Closed Project] and so on ... under project category, add new category to project "Closed Project", and save when users try view this project or create issues in the project they will see that project is "Closed Project" (of course they should have permission to view /create)
You can set a validation(simple script validator)
import com.atlassian.jira.component.ComponentAccessor
def groupManager = ComponentAccessor.getGroupManager()
groupManager.isUserInGroup(issue.reporter?.name, 'projectadmingroup')
in Create transition to block users from creating tickets :) in this project(limit is to only admins group) and print a message" Sorry you cannot create ticket Project is Closed "
Since all issues are Done in this project you may also want to set issue security to limit all users/group who can view issues in this project.
I hope this helps.
Bests.
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.
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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.