@@ -174,7 +174,7 @@ public virtual async Task<IActionResult> MonitorResourceUsingSSE(string name, Ca
174
174
/// <param name="resourceVersion">The expected resource version, if any, used for optimistic concurrency</param>
175
175
/// <param name="cancellationToken">A <see cref="CancellationToken"/></param>
176
176
/// <returns>A new <see cref="IActionResult"/></returns>
177
- [ HttpPatch ( "{namespace}/{ name}" ) ]
177
+ [ HttpPatch ( "{name}" ) ]
178
178
[ ProducesResponseType ( typeof ( Resource ) , ( int ) HttpStatusCode . OK ) ]
179
179
[ ProducesErrorResponseType ( typeof ( Neuroglia . ProblemDetails ) ) ]
180
180
public virtual async Task < IActionResult > PatchResource ( string name , [ FromBody ] Patch patch , string ? resourceVersion = null , CancellationToken cancellationToken = default )
@@ -191,7 +191,7 @@ public virtual async Task<IActionResult> PatchResource(string name, [FromBody] P
191
191
/// <param name="resourceVersion">The expected resource version, if any, used for optimistic concurrency</param>
192
192
/// <param name="cancellationToken">A <see cref="CancellationToken"/></param>
193
193
/// <returns>A new <see cref="IActionResult"/></returns>
194
- [ HttpPatch ( "{namespace}/{ name}/status" ) ]
194
+ [ HttpPatch ( "{name}/status" ) ]
195
195
[ ProducesResponseType ( typeof ( Resource ) , ( int ) HttpStatusCode . OK ) ]
196
196
[ ProducesErrorResponseType ( typeof ( Neuroglia . ProblemDetails ) ) ]
197
197
public virtual async Task < IActionResult > PatchResourceStatus ( string name , [ FromBody ] Patch patch , string ? resourceVersion = null , CancellationToken cancellationToken = default )
0 commit comments