mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2025-08-21 05:44:48 +00:00
21 lines
372 B
TypeScript
21 lines
372 B
TypeScript
![]() |
import $ from 'cafy';
|
||
|
import define from '../../define';
|
||
|
import Instance from '../../../../models/instance';
|
||
|
|
||
|
export const meta = {
|
||
|
requireCredential: false,
|
||
|
|
||
|
params: {
|
||
|
host: {
|
||
|
validator: $.str
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
|
||
|
export default define(meta, (ps, me) => new Promise(async (res, rej) => {
|
||
|
const instance = await Instance
|
||
|
.findOne({ host: ps.host });
|
||
|
|
||
|
res(instance);
|
||
|
}));
|