X-Git-Url: http://git.roojs.org/?p=gitlive;a=blobdiff_plain;f=RooTicket.vala;fp=RooTicket.vala;h=00bc43bffaada5e4be2eab106c572c7a8c19ef92;hp=d32ad47802fb93d3148a7abb989f65ddf103e591;hb=9df01e59458293cdac3f984d7bc8f63055640e19;hpb=41d00310fa27851e4f7ba827f1587a3cf397cc99 diff --git a/RooTicket.vala b/RooTicket.vala index d32ad478..00bc43bf 100644 --- a/RooTicket.vala +++ b/RooTicket.vala @@ -69,6 +69,7 @@ public class RooTicket : Object public string id; // not really important that they are numbers.. public string summary; public string description; + public string project_id; public string project_id_name; @@ -114,6 +115,7 @@ public class RooTicket : Object add.id = t.get_string_member("id"); add.summary = t.get_string_member("summary"); add.description = t.get_string_member("description"); + add.project_id = t.get_string_member("project_id"); add.project_id_name = t.get_string_member("project_id_name"); this.tickets.add(add); GLib.debug("ADD ticket %s : %s : %s", add.id, add.summary, add.project_id_name); @@ -130,6 +132,7 @@ public class RooTicket : Object t.id = "-1"; t.summary = ""; t.description = ""; + t.project_id = ""; t.project_id_name = ""; RooTicket.singleton().tickets.add(t); return t;