Book Image

JIRA 4 Essentials

By :
Book Image

JIRA 4 Essentials

By:

Overview of this book

<p>This book will introduce you to Atlassian JIRA, the world's most popular issue tracking software. JIRA provides issue tracking and project tracking for software development teams to improve code quality and the speed of development.</p> <p>This book will show you how to plan and design your own JIRA implementation. You will learn how to customize JIRA to adapt it to your organization and add value to your business. Chapters are structured to guide you through all the key aspects of JIRA with a practical implementation. By the end of the book, you will have built a working JIRA implementation.</p> <p>You will start by setting up your own JIRA and be introduced to all the key features in subsequent chapters. With each chapter, you will learn important concepts such as business processes and workflows, e-mails and notifications, and you will have the opportunity to put your newly acquired knowledge into practice by following a live sample JIRA implementation.</p> <p>Packed with real-life example and step-by-step instructions, this book will help you become a JIRA expert.</p>
Table of Contents (17 chapters)
JIRA 4 Essentials
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Help Desk Project


In the previous chapters, we have configured JIRA to capture data with customized screens and fields, and process the captured data through workflows. What we need to do now is to secure the data we have gathered to make sure only the authorized users can access and manipulate issues.

Since our Help Desk Project is used by our internal team, what we really need to do is to secure our issues to ensure the data they hold do not get modified by other users, usually by mistake. This allows us to mitigate human errors by handling access accordingly.

To achieve this, we have the following requirements:

  • We need to be able to tell who belongs to the help desk team.

  • Restrict issue assign operation to only the user who has submitted the ticket and members of the help desk team.

  • Not to allow tickets to be moved to other projects.

  • Limit the assignee of tickets to the reporter and members of the help desk team.

Of course, there are a lot of other permissions we can apply here. The above four...