This commit is contained in:
@@ -48,6 +48,7 @@ namespace AyaNova.Api.Controllers
|
||||
|
||||
/// <summary>
|
||||
/// Get form customizations for Client form display
|
||||
/// Returns 304 not modified if concurrency token provided and unchanged
|
||||
///
|
||||
/// Required roles:
|
||||
/// Any
|
||||
@@ -55,7 +56,7 @@ namespace AyaNova.Api.Controllers
|
||||
/// </summary>
|
||||
/// <param name="formkey">The official form key used by AyaNova</param>
|
||||
/// <param name="concurrencyToken">A prior concurrency token used to check if there are any changes without using up bandwidth sending unnecessary data</param>
|
||||
/// <returns>A single FormCustom</returns>
|
||||
/// <returns>A single FormCustom or nothing and a header 304 not modified</returns>
|
||||
[HttpGet("{formkey}")]
|
||||
public async Task<IActionResult> GetFormCustom([FromRoute] string formkey, [FromQuery] uint? concurrencyToken)
|
||||
{
|
||||
@@ -149,7 +150,7 @@ namespace AyaNova.Api.Controllers
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// <summary>
|
||||
/// Get a list of all customizable form keys
|
||||
/// Used to build UI for customizing a form
|
||||
///
|
||||
|
||||
Reference in New Issue
Block a user