Skip to content

Commit

Permalink
fix url remove paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Son Roy Almerol committed Nov 15, 2024
1 parent e360f70 commit 7296d88
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/proxy/views/d2d_backup/panels/exclusions.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ Ext.define('PBS.D2DManagement.ExclusionPanel', {
{
xtype: 'proxmoxStdRemoveButton',
baseurl: '/api2/extjs/config/d2d-exclusion',
getUrl: (rec) => `/api/extjs/config/d2d-exclusion/${encodeURIComponent(rec.getId())}`,
getUrl: (rec) => `/config/d2d-exclusion/${encodeURIComponent(rec.getId())}`,
callback: 'reload',
},
],
Expand Down
2 changes: 1 addition & 1 deletion internal/proxy/views/d2d_backup/panels/partial_files.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ Ext.define('PBS.D2DManagement.PartialFilePanel', {
{
xtype: 'proxmoxStdRemoveButton',
baseurl: '/api2/extjs/config/d2d-partial-file',
getUrl: (rec) => `/api/extjs/config/d2d-partial-file/${encodeURIComponent(rec.getId())}`,
getUrl: (rec) => `/config/d2d-partial-file/${encodeURIComponent(rec.getId())}`,
callback: 'reload',
},
],
Expand Down

0 comments on commit 7296d88

Please sign in to comment.