浏览代码

Update admin settings view

Daniel Supernault 6 年之前
父节点
当前提交
4b06d3565a
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      resources/views/admin/settings/config/general.blade.php

+ 2 - 2
resources/views/admin/settings/config/general.blade.php

@@ -28,9 +28,9 @@
       <label for="app_url" class="col-sm-3 col-form-label font-weight-bold text-right">ActivityPub</label>
       <div class="col-sm-9">
         <div class="form-check pb-2">
-          <input class="form-check-input" type="checkbox" id="activitypub_enabled" name="activitypub_enabled" {{config('pixelfed.activitypub_enabled') === true ? 'checked=""' : '' }}>
+          <input class="form-check-input" type="checkbox" id="activitypub_enabled" name="activitypub_enabled" {{config('federation.activitypub.enabled') === true ? 'checked=""' : '' }}>
           <label class="form-check-label font-weight-bold" for="activitypub_enabled">
-            {{config('pixelfed.activitypub_enabled') === true ? 'Enabled' : 'Disabled' }}
+            {{config('federation.activitypub.enabled') === true ? 'Enabled' : 'Disabled' }}
           </label>
           <p class="text-muted small help-text font-weight-bold">Enable for federation support.</p>
         </div>