feat: add jira filter url per participant and meeting jira url
This commit is contained in:
@@ -112,6 +112,7 @@ export namespace models {
|
||||
id: number;
|
||||
name: string;
|
||||
email?: string;
|
||||
jiraFilter?: string;
|
||||
timeLimit: number;
|
||||
order: number;
|
||||
active: boolean;
|
||||
@@ -129,6 +130,7 @@ export namespace models {
|
||||
this.id = source["id"];
|
||||
this.name = source["name"];
|
||||
this.email = source["email"];
|
||||
this.jiraFilter = source["jiraFilter"];
|
||||
this.timeLimit = source["timeLimit"];
|
||||
this.order = source["order"];
|
||||
this.active = source["active"];
|
||||
@@ -253,6 +255,7 @@ export namespace models {
|
||||
export class Meeting {
|
||||
id: number;
|
||||
name: string;
|
||||
jiraUrl?: string;
|
||||
timeLimit: number;
|
||||
sessions?: MeetingSession[];
|
||||
// Go type: time
|
||||
@@ -268,6 +271,7 @@ export namespace models {
|
||||
if ('string' === typeof source) source = JSON.parse(source);
|
||||
this.id = source["id"];
|
||||
this.name = source["name"];
|
||||
this.jiraUrl = source["jiraUrl"];
|
||||
this.timeLimit = source["timeLimit"];
|
||||
this.sessions = this.convertValues(source["sessions"], MeetingSession);
|
||||
this.createdAt = this.convertValues(source["createdAt"], null);
|
||||
|
||||
Reference in New Issue
Block a user