@@ -211,7 +211,7 @@ Manage projects
211
211
212
212
# Returns a list of active users who have browse permission for a project that matches the search string for username.
213
213
# Using " " string (space) for username gives All the active users who have browse permission for a project
214
- jira.get_users_with_browse_permission_to_a_project(self , username, issue_key = None , project_key = None , start = 0 , limit = 100 )
214
+ jira.get_users_with_browse_permission_to_a_project(username, issue_key = None , project_key = None , start = 0 , limit = 100 )
215
215
216
216
Manage issues
217
217
-------------
@@ -228,8 +228,13 @@ Manage issues
228
228
fields = {' summary' : ' New summary' }
229
229
jira.update_issue_field(key, fields, notify_users = True )
230
230
231
+ # Append value to issue field
232
+ field = ' customfield_10000'
233
+ value = {' name' : ' username' }
234
+ jira.issue_field_value_append(issue_id_or_key, field, value, notify_users = True )
235
+
231
236
# Get existing custom fields or find by filter
232
- jira.get_custom_fields(self , search = None , start = 1 , limit = 50 ):
237
+ jira.get_custom_fields(search = None , start = 1 , limit = 50 ):
233
238
234
239
# Check issue exists
235
240
jira.issue_exists(issue_key)
@@ -286,7 +291,7 @@ Manage issues
286
291
jira.issue_createmeta_issuetypes(project, start = None , limit = None )
287
292
288
293
# Get create field metadata for a project and issue type id
289
- jira.issue_createmeta_fieldtypes(self , project, issue_type_id, start = None , limit = None )
294
+ jira.issue_createmeta_fieldtypes(project, issue_type_id, start = None , limit = None )
290
295
291
296
# Create Issue Link
292
297
data = {
@@ -467,7 +472,7 @@ Manage Sprints
467
472
jira.get_all_issues_for_sprint_in_board(board_id, state = None , start = 0 , limit = 50 )
468
473
469
474
# Get all versions for sprint in board
470
- jira.get_all_versions_from_board(self , board_id, released = " true" , start = 0 , limit = 50 )
475
+ jira.get_all_versions_from_board(board_id, released = " true" , start = 0 , limit = 50 )
471
476
472
477
# Create sprint
473
478
jira.jira.create_sprint(sprint_name, origin_board_id, start_datetime, end_datetime, goal)
0 commit comments