Quellcode durchsuchen

Update nag endpoint

Daniel Supernault vor 1 Jahr
Ursprung
Commit
df5a9f2659
1 geänderte Dateien mit 3 neuen und 1 gelöschten Zeilen
  1. 3 1
      app/Http/Controllers/Api/ApiV1Dot1Controller.php

+ 3 - 1
app/Http/Controllers/Api/ApiV1Dot1Controller.php

@@ -1258,6 +1258,8 @@ class ApiV1Dot1Controller extends Controller
     {
         abort_unless((bool) config_cache('pixelfed.oauth_enabled'), 404);
 
-        return NotificationAppGatewayService::config();
+        return [
+            'active' => NotificationAppGatewayService::enabled(),
+        ];
     }
 }