mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
bbbaacc350
* Custom Forms * Update BTCPayServer.Data/Migrations/20230125085242_AddForms.cs * Cleanups * Explain public form * Add store branding * Add form name to POS form * add tests * fix migration * Minor cleanups * Code improvements * Add form validation Closes #4317. * Adapt form validation for Bootstrap 5 * update logic for forms * pr changes * Minor code cleanup * Remove unused parameters * Refactor Form data handling to avoid O(n3) issues * Rename Hidden to Constant * Pre-populate FormView from the query string params * Fix test --------- Co-authored-by: d11n <mail@dennisreimann.de> Co-authored-by: nicolas.dorier <nicolas.dorier@gmail.com>
29 lines
899 B
C#
29 lines
899 B
C#
using BTCPayServer.Abstractions.Form;
|
|
using BTCPayServer.Data.Data;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
namespace BTCPayServer.Forms;
|
|
|
|
public static class FormDataExtensions
|
|
{
|
|
public static void AddForms(this IServiceCollection serviceCollection)
|
|
{
|
|
serviceCollection.AddSingleton<FormDataService>();
|
|
serviceCollection.AddSingleton<FormComponentProviders>();
|
|
serviceCollection.AddSingleton<IFormComponentProvider, HtmlInputFormProvider>();
|
|
serviceCollection.AddSingleton<IFormComponentProvider, HtmlFieldsetFormProvider>();
|
|
}
|
|
|
|
public static JObject Deserialize(this FormData form)
|
|
{
|
|
return JsonConvert.DeserializeObject<JObject>(form.Config);
|
|
}
|
|
|
|
public static string Serialize(this JObject form)
|
|
{
|
|
return JsonConvert.SerializeObject(form);
|
|
}
|
|
}
|