disable status badge strip in admin-user and instance-info

This commit is contained in:
Hazelnoot 2025-05-29 22:20:21 -04:00
parent f303cb1171
commit 979c7628b1
9 changed files with 211 additions and 9 deletions

View file

@ -67,6 +67,15 @@ export class UtilityService {
return silencedHosts.some(x => `.${host.toLowerCase()}`.endsWith(`.${x}`));
}
@bindThis
public isBubbledHost(host: string | null): boolean {
if (host == null) return false;
// TODO remove null conditional after merging lab/persisted-instance-blocks
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
return this.meta.bubbleInstances?.includes(host);
}
@bindThis
public concatNoteContentsForKeyWordCheck(content: {
cw?: string | null;