Esempio n. 1
0
 partial void auth(IServiceProvider services)
 {
     Auth = new AuthGroup
            (
         source.AddGroup(nameof(Auth), ResourceAccess.AllowAnonymous()),
         new AuthActionFactory(services)
            );
     AuthApi = new AuthApiGroup
               (
         source.AddGroup(nameof(AuthApi), ResourceAccess.AllowAnonymous()),
         new AuthActionFactory(services)
               );
 }