Skip to content

Commit

Permalink
fixed vlan delete paths (#563)
Browse files Browse the repository at this point in the history
  • Loading branch information
sei-aschlackman authored Aug 26, 2024
1 parent 455e66d commit e5e91e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/generated/caster-api/api/vlans.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ export class VlansService {
}
}

let localVarPath = `/vlans/partitions/${this.configuration.encodeParam({name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid"})}`;
let localVarPath = `/api/vlans/partitions/${this.configuration.encodeParam({name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid"})}`;
return this.httpClient.request<any>('delete', `${this.configuration.basePath}${localVarPath}`,
{
context: localVarHttpContext,
Expand Down Expand Up @@ -653,7 +653,7 @@ export class VlansService {
}
}

let localVarPath = `/vlans/pools/${this.configuration.encodeParam({name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid"})}`;
let localVarPath = `/api/vlans/pools/${this.configuration.encodeParam({name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid"})}`;
return this.httpClient.request<any>('delete', `${this.configuration.basePath}${localVarPath}`,
{
context: localVarHttpContext,
Expand Down

0 comments on commit e5e91e9

Please sign in to comment.