aboutsummaryrefslogtreecommitdiff
path: root/app/views
diff options
context:
space:
mode:
authorGravatar Inverle <inverle@proton.me> 2025-12-04 20:10:20 +0100
committerGravatar GitHub <noreply@github.com> 2025-12-04 20:10:20 +0100
commit6d2bb24b3772a7b839d6911c1e1fe27151d29bfa (patch)
treed9a4171134bc76ff6548100863f13163c55520b8 /app/views
parent5e9c3617cac1e3eac246e2ae7df6f4b71c33d37c (diff)
Move unsafe autologin to an extension (#7958)
Completes the following TODO https://github.com/FreshRSS/FreshRSS/issues/7923: https://github.com/FreshRSS/FreshRSS/blob/de624dc8ce63ec819c61216d9d44f828841c293e/app/Controllers/authController.php#L105 Extension PR: https://github.com/FreshRSS/Extensions/pull/364 https://github.com/FreshRSS/Extensions/tree/main/xExtension-UnsafeAutologin
Diffstat (limited to 'app/views')
-rw-r--r--app/views/auth/index.phtml12
1 files changed, 0 insertions, 12 deletions
diff --git a/app/views/auth/index.phtml b/app/views/auth/index.phtml
index f11d29ae4..5546541f9 100644
--- a/app/views/auth/index.phtml
+++ b/app/views/auth/index.phtml
@@ -48,18 +48,6 @@
<div class="form-group">
<div class="group-controls">
- <label class="checkbox" for="unsafe_autologin">
- <input type="checkbox" name="unsafe_autologin" id="unsafe_autologin" value="1"<?=
- FreshRSS_Context::systemConf()->unsafe_autologin_enabled ? ' checked="checked"' : '',
- FreshRSS_Auth::accessNeedsAction() ? '' : ' disabled="disabled"' ?> />
- <?= _t('admin.auth.unsafe_autologin') ?>
- <kbd><?= Minz_Url::display(['c' => 'auth', 'a' => 'login', 'params' => ['u' => 'alice', 'p' => '1234']], 'html', true) ?></kbd>
- </label>
- </div>
- </div>
-
- <div class="form-group">
- <div class="group-controls">
<label class="checkbox" for="api_enabled">
<input type="checkbox" name="api_enabled" id="api_enabled" value="1"<?=
FreshRSS_Context::systemConf()->api_enabled ? ' checked="checked"' : '',