Ver Fonte

Update nag endpoint

Daniel Supernault há 1 ano atrás
pai
commit
df5a9f2659
1 ficheiros alterados com 3 adições e 1 exclusões
  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(),
+        ];
     }
 }