mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
738 B
26 lines
738 B
import { AdminService } from '@ghostfolio/client/services/admin.service';
|
|
import { UniqueAsset } from '@ghostfolio/common/interfaces';
|
|
|
|
import { Injectable } from '@angular/core';
|
|
import { takeUntil } from 'rxjs';
|
|
|
|
@Injectable()
|
|
export class AdminMarketDataService {
|
|
public constructor(private adminService: AdminService) {}
|
|
|
|
public deleteProfileData({ dataSource, symbol }: UniqueAsset) {
|
|
const confirmation = confirm(
|
|
$localize`Do you really want to delete this asset profile?`
|
|
);
|
|
|
|
if (confirmation) {
|
|
this.adminService
|
|
.deleteProfileData({ dataSource, symbol })
|
|
.subscribe(() => {
|
|
setTimeout(() => {
|
|
window.location.reload();
|
|
}, 300);
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|