Provisioning: Show file path of provisioning file in save/delete dialogs (#16706)

* Add file path to metadata and show it in dialogs

* Make path relative to config directory

* Fix tests

* Add test for the relative path

* Refactor to use path relative to provisioner path

* Change return types

* Rename attribute

* Small fixes from review
This commit is contained in:
Andrej Ocenas
2019-04-30 13:32:18 +02:00
committed by GitHub
parent 76ab0aa059
commit eb82a75668
23 changed files with 285 additions and 134 deletions
+3 -5
View File
@@ -323,15 +323,13 @@ type GetDashboardSlugByIdQuery struct {
Result string
}
type IsDashboardProvisionedQuery struct {
type GetProvisionedDashboardDataByIdQuery struct {
DashboardId int64
Result bool
Result *DashboardProvisioning
}
type GetProvisionedDashboardDataQuery struct {
Name string
Name string
Result []*DashboardProvisioning
}