I've already disabled Federation from ACP on this NodeBB (docker deployed). Register/Login screen no longer have "Manage Open Social Web handles" button. But at topic or category view, click "Log in to reply" or "Log in to Post", still have "Manage Open Social Web handles" link showing up.
Answer from AI:
- The modal is rendered from public/templates/modals/intents/trigger.tpl.
- The link text comes from the language key login:manage-social-web-handles.
- The click handler is in public/src/modules/intents.js (_intentsHandler), and it is wired up for guest “Log in to reply/post” buttons by:
public/src/client/topic.js
public/src/client/category.js
public/src/client/world.js
The ACP Federation → Enable ActivityPub toggle (meta.config.activitypubEnabled) already controls the “Manage Open Social Web Handles” button on the /login and /register pages via osw_logins, but the topic/category/world guest modal does not check that flag. That is a core bug.
