ソースを参照

Update nag endpoint

Daniel Supernault 1 年間 前
コミット
df5a9f2659
1 ファイル変更3 行追加1 行削除
  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(),
+        ];
     }
 }