You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
738 B
22 lines
738 B
using Volo.Abp.Threading;
|
|
|
|
namespace WinIn.FasterZ.AuthSiteCenter;
|
|
|
|
public static class AuthSiteCenterGlobalFeatureConfigurator
|
|
{
|
|
private static readonly OneTimeRunner OneTimeRunner = new OneTimeRunner();
|
|
|
|
public static void Configure()
|
|
{
|
|
OneTimeRunner.Run(() =>
|
|
{
|
|
/* You can configure (enable/disable) global features of the used modules here.
|
|
*
|
|
* YOU CAN SAFELY DELETE THIS CLASS AND REMOVE ITS USAGES IF YOU DON'T NEED TO IT!
|
|
*
|
|
* Please refer to the documentation to lear more about the Global Features System:
|
|
* https://docs.abp.io/en/abp/latest/Global-Features
|
|
*/
|
|
});
|
|
}
|
|
}
|
|
|