* Fix mastodon version * テーブル作成 * Wip: フレンドサーバーフォローの承認を受信 * Wip: フレンド申請拒否を受信 * Wip: フォローリクエストを受理 * Wip: 相手からのフォロー・アンフォローを受理 * 普通のフォローとフレンドサーバーのフォローを区別するテストを追加 * ドメインブロックによるフォロー拒否 * ドメインブロックしたあと、申請中のフォロリクを取り下げる処理 * スタブに条件を追加 * Wip: 相手からのDelete信号に対応 * DB定義が消えていたので修正 * Wip: ローカル公開投稿をフレンドに送信する処理など * Wip: 未収載+誰でもの投稿をフレンドに送る設定 * Wip: ローカル公開をそのまま送信する設定を考慮 * Fix test * Wip: 他サーバーからのローカル公開投稿の受け入れ * Wip: Web画面作成 * Fix test * Wip: ローカル公開を連合TLに流す * Wip: フレンドサーバーの削除ボタン * Wip: メール通知や設定のテストなど * Wip: 翻訳を作成 * Fix: 却下されたあとフォローボタンが表示されない問題 * Wip: 編集できない問題 * 有効にしていないフレンドサーバーをリストで無効表示
82 lines
3 KiB
Text
82 lines
3 KiB
Text
- content_for :page_title do
|
|
= t('admin.settings.discovery.title')
|
|
|
|
- content_for :heading do
|
|
%h2= t('admin.settings.title')
|
|
= render partial: 'admin/settings/shared/links'
|
|
|
|
= simple_form_for @admin_settings, url: admin_settings_discovery_path, html: { method: :patch } do |f|
|
|
= render 'shared/error_messages', object: @admin_settings
|
|
|
|
%p.lead= t('admin.settings.discovery.preamble')
|
|
|
|
%h4= t('admin.settings.discovery.trends')
|
|
|
|
.fields-group
|
|
= f.input :trends, as: :boolean, wrapper: :with_label
|
|
|
|
.fields-group
|
|
= f.input :trends_as_landing_page, as: :boolean, wrapper: :with_label
|
|
|
|
.fields-group
|
|
= f.input :trendable_by_default, as: :boolean, wrapper: :with_label, recommended: :not_recommended
|
|
|
|
%h4= t('admin.settings.discovery.public_timelines')
|
|
|
|
.fields-group
|
|
= f.input :timeline_preview, as: :boolean, wrapper: :with_label
|
|
|
|
.fields-group
|
|
= f.input :noindex, as: :boolean, wrapper: :with_label, label: t('admin.settings.default_noindex.title'), hint: t('admin.settings.default_noindex.desc_html')
|
|
|
|
%h4= t('admin.settings.discovery.emoji_reactions')
|
|
|
|
.fields-group
|
|
= f.input :enable_emoji_reaction, as: :boolean, wrapper: :with_label, kmyblue: true, hint: false
|
|
|
|
.fields-group
|
|
= f.input :receive_other_servers_emoji_reaction, as: :boolean, wrapper: :with_label, kmyblue: true
|
|
|
|
.fields-group
|
|
= f.input :streaming_other_servers_emoji_reaction, as: :boolean, wrapper: :with_label, kmyblue: true
|
|
|
|
%h4= t('admin.settings.discovery.visibilities')
|
|
|
|
.fields-group
|
|
= f.input :enable_public_unlisted_visibility, as: :boolean, wrapper: :with_label, kmyblue: true, hint: false
|
|
|
|
%h4= t('admin.settings.discovery.friend_servers')
|
|
|
|
.fields-group
|
|
= f.input :unlocked_friend, as: :boolean, wrapper: :with_label, kmyblue: true, hint: false
|
|
|
|
%h4= t('admin.settings.discovery.publish_statistics')
|
|
|
|
.fields-group
|
|
= f.input :activity_api_enabled, as: :boolean, wrapper: :with_label, recommended: :recommended
|
|
|
|
%h4= t('admin.settings.discovery.publish_discovered_servers')
|
|
|
|
.fields-group
|
|
= f.input :peers_api_enabled, as: :boolean, wrapper: :with_label, recommended: :recommended
|
|
|
|
%h4= t('admin.settings.security.federation_authentication')
|
|
|
|
.fields-group
|
|
= f.input :authorized_fetch, as: :boolean, wrapper: :with_label, label: t('admin.settings.security.authorized_fetch'), warning_hint: authorized_fetch_overridden? ? t('admin.settings.security.authorized_fetch_overridden_hint') : nil, hint: t('admin.settings.security.authorized_fetch_hint'), disabled: authorized_fetch_overridden?, recommended: authorized_fetch_overridden? ? :overridden : nil
|
|
|
|
.fields-group
|
|
= f.input :check_lts_version_only, as: :boolean, wrapper: :with_label, kmyblue: true, hint: false
|
|
|
|
%h4= t('admin.settings.discovery.follow_recommendations')
|
|
|
|
.fields-group
|
|
= f.input :bootstrap_timeline_accounts, wrapper: :with_block_label
|
|
|
|
%h4= t('admin.settings.discovery.profile_directory')
|
|
|
|
.fields-group
|
|
= f.input :profile_directory, as: :boolean, wrapper: :with_label
|
|
|
|
.actions
|
|
= f.button :button, t('generic.save_changes'), type: :submit
|