@@ -174,7 +174,7 @@ public virtual async Task<IActionResult> MonitorResourceUsingSSE(string name, Ca
174174    /// <param name="resourceVersion">The expected resource version, if any, used for optimistic concurrency</param> 
175175    /// <param name="cancellationToken">A <see cref="CancellationToken"/></param> 
176176    /// <returns>A new <see cref="IActionResult"/></returns> 
177-     [ HttpPatch ( "{namespace}/{ name}" ) ] 
177+     [ HttpPatch ( "{name}" ) ] 
178178    [ ProducesResponseType ( typeof ( Resource ) ,  ( int ) HttpStatusCode . OK ) ] 
179179    [ ProducesErrorResponseType ( typeof ( Neuroglia . ProblemDetails ) ) ] 
180180    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
191191    /// <param name="resourceVersion">The expected resource version, if any, used for optimistic concurrency</param> 
192192    /// <param name="cancellationToken">A <see cref="CancellationToken"/></param> 
193193    /// <returns>A new <see cref="IActionResult"/></returns> 
194-     [ HttpPatch ( "{namespace}/{ name}/status" ) ] 
194+     [ HttpPatch ( "{name}/status" ) ] 
195195    [ ProducesResponseType ( typeof ( Resource ) ,  ( int ) HttpStatusCode . OK ) ] 
196196    [ ProducesErrorResponseType ( typeof ( Neuroglia . ProblemDetails ) ) ] 
197197    public  virtual  async  Task < IActionResult >  PatchResourceStatus ( string  name ,  [ FromBody ]  Patch  patch ,  string ?  resourceVersion  =  null ,  CancellationToken  cancellationToken  =  default ) 
0 commit comments