blob: e09887b4ed644333f5d351cb49554a6d20484788 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
using CrupestApi.Commons.Secrets;
using CrupestApi.Commons.Crud;
namespace CrupestApi.Secrets;
public static class SecretsExtensions
{
public static IServiceCollection AddSecrets(this IServiceCollection services)
{
services.AddCrud<SecretInfo, SecretService>();
return services;
}
public static WebApplication MapSecrets(this WebApplication webApplication, string path = "/api/secrets")
{
webApplication.MapCrud<SecretInfo>(path, SecretsConstants.SecretManagementKey);
return webApplication;
}
}
|