public AuthController(DeviceSpecificAppServerContext context, INotificationsProvider notificationsProvider) { this.context = context; this.notificationsProvider = notificationsProvider; signingKey = Environment.GetEnvironmentVariable("WEBSITE_AUTH_SIGNING_KEY"); var website = Environment.GetEnvironmentVariable("WEBSITE_HOSTNAME"); audience = $"https://{website}/"; issuer = $"https://{website}/"; }
public ChatController(DeviceSpecificAppServerContext context, INotificationsProvider notificationsProvider) { this.context = context; this.notificationsProvider = notificationsProvider; }