2021-11-22 14:29:22 +01:00
|
|
|
namespace zero.Backoffice.Modules;
|
2021-11-20 13:52:28 +01:00
|
|
|
|
|
|
|
|
internal class CountriesModule : ZeroModule
|
|
|
|
|
{
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public override void Register(IZeroModuleConfiguration config)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public override void Configure(IZeroOptions options)
|
|
|
|
|
{
|
2021-11-22 14:29:22 +01:00
|
|
|
options.For<RavenOptions>().Indexes.Add<zero_Backoffice_Countries_Listing>();
|
2021-11-20 13:52:28 +01:00
|
|
|
}
|
|
|
|
|
}
|