Fixes for sql db projects dashboard (#15100)

* Fix ID assignment for sql db projects dashboard

* Update with new fixes

* Fix tests

* Fix test
This commit is contained in:
Sakshi Sharma
2021-05-05 19:00:22 -07:00
committed by GitHub
parent 8c08c79d67
commit 3b3df2c3fc
9 changed files with 84 additions and 57 deletions

View File

@@ -19,6 +19,17 @@ export class DashboardData {
}
}
export class PublishData extends DashboardData {
public targetServer: string;
public targetDatabase: string;
constructor(projectFile: string, status: Status, target: string, startDate: string, targetDatabase: string, targetServer: string) {
super(projectFile, status, target, startDate);
this.targetDatabase = targetDatabase;
this.targetServer = targetServer;
}
}
export enum Status {
success,
failed,