forked from MrRefactoring/jira.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.ts
27 lines (26 loc) · 1.11 KB
/
configuration.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { TimeTrackingConfiguration } from './timeTrackingConfiguration';
/** Details about the configuration of Jira. */
export interface Configuration {
/**
* Whether the ability for users to vote on issues is enabled. See [Configuring Jira application
* options](https://confluence.atlassian.com/x/uYXKM) for details.
*/
votingEnabled?: boolean;
/**
* Whether the ability for users to watch issues is enabled. See [Configuring Jira application
* options](https://confluence.atlassian.com/x/uYXKM) for details.
*/
watchingEnabled?: boolean;
/**
* Whether the ability to create unassigned issues is enabled. See [Configuring Jira application
* options](https://confluence.atlassian.com/x/uYXKM) for details.
*/
unassignedIssuesAllowed?: boolean;
/** Whether the ability to create subtasks for issues is enabled. */
subTasksEnabled?: boolean;
/** Whether the ability to link issues is enabled. */
issueLinkingEnabled?: boolean;
/** Whether the ability to add attachments to issues is enabled. */
attachmentsEnabled?: boolean;
timeTrackingConfiguration?: TimeTrackingConfiguration;
}