/// <summary>
 /// Is called during startup to configure the system.
 /// </summary>
 public override Task ConfigureSystem()
 {
     return(Gateway.ConfigureXmpp(this));
 }
示例#2
0
        /// <summary>
        /// Is called during startup to configure the system.
        /// </summary>
        public override async Task ConfigureSystem()
        {
            await Gateway.ConfigureXmpp(this);

            await this.CheckAdminAccount();
        }