Merge lp:~sil2100/ubuntu-ci-services-itself/ticket_api_additions into lp:ubuntu-ci-services-itself

Proposed by Łukasz Zemczak
Status: Work in progress
Proposed branch: lp:~sil2100/ubuntu-ci-services-itself/ticket_api_additions
Merge into: lp:ubuntu-ci-services-itself
Diff against target: 36 lines (+7/-3)
1 file modified
docs/components/ticket-system.rst (+7/-3)
To merge this branch: bzr merge lp:~sil2100/ubuntu-ci-services-itself/ticket_api_additions
Reviewer Review Type Date Requested Status
Canonical CI Engineering Pending
Review via email: mp+199301@code.launchpad.net

Commit message

Include the API bits-and-pieces we found useful when designing the Dart prototype

Description of the change

Working on including the API bits-and-pieces we found useful when designing the Dart prototype

To post a comment you must log in.

Unmerged revisions

41. By Łukasz Zemczak

Working on including the API bits-and-pieces we found useful when designing the Dart prototype

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'docs/components/ticket-system.rst'
2--- docs/components/ticket-system.rst 2013-12-12 16:53:14 +0000
3+++ docs/components/ticket-system.rst 2013-12-17 15:14:40 +0000
4@@ -135,7 +135,7 @@
5 list
6 ~~~~
7
8-List all open tickets.
9+List all open tickets. Only include the most basic information about the ticket - a
10
11
12 create_ticket
13@@ -146,7 +146,7 @@
14 get_ticket
15 ~~~~~~~~~~
16
17-Return the ticket given its id.
18+Return the ticket given its id. This includes all the detailed information.
19
20 get_ticket_status
21 ~~~~~~~~~~~~~~~~~
22@@ -282,9 +282,13 @@
23 owner = models.ForeignKey("Person")
24 title = models.CharField(max_length=4096)
25 description = models.TextField()
26- bug_id = models.IntegerField(null=True, blank=True)
27+ submitted = models.DateTimeField()
28+ updated = models.DateTimeField()
29 current_workflow_step = models.CharField(choices=WORKFLOW_STEPS)
30 status = models.CharField(choices=WORKFLOW_STEP_STATUSES)
31+ added_packages = models.TextField()
32+ removed_packages = models.TextField()
33+ ppa = models.CharField(max_length=4096)
34 base_image = models.CharField(max_length=20)
35
36 subticket

Subscribers

People subscribed via source and target branches