forked from FoundKeyGang/FoundKey
fix: block button in federation panel (#8855)
This commit is contained in:
parent
64a0a680e1
commit
7f1ae87587
1 changed files with 11 additions and 6 deletions
|
@ -138,12 +138,17 @@ let chartSrc = $ref('instance-requests');
|
|||
let chartSpan = $ref('hour');
|
||||
|
||||
async function fetch() {
|
||||
meta = await os.api('meta', { detail: true });
|
||||
instance = await os.api('federation/show-instance', {
|
||||
host: props.host,
|
||||
});
|
||||
suspended = instance.isSuspended;
|
||||
isBlocked = meta.blockedHosts.includes(instance.host);
|
||||
if (iAmModerator) {
|
||||
// suspended and blocked information is only displayed to moderators.
|
||||
// otherwise the API will error anyway
|
||||
|
||||
meta = await os.api('admin/meta', { detail: true });
|
||||
instance = await os.api('federation/show-instance', {
|
||||
host: props.host,
|
||||
});
|
||||
suspended = instance.isSuspended;
|
||||
isBlocked = meta.blockedHosts.includes(instance.host);
|
||||
}
|
||||
}
|
||||
|
||||
async function toggleBlock(ev) {
|
||||
|
|
Loading…
Reference in a new issue