mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-15 09:35:37 -05:00
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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user