mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 10:43:08 +02:00
f6154dc0af
Co-authored-by: MeiMei <30769358+mei23@users.noreply.github.com> Co-authored-by: Satsuki Yanagi <17376330+u1-liquid@users.noreply.github.com>
18 lines
371 B
TypeScript
18 lines
371 B
TypeScript
import define from '../../define';
|
|
import { Antennas } from '../../../../models';
|
|
|
|
export const meta = {
|
|
tags: ['antennas', 'account'],
|
|
|
|
requireCredential: true,
|
|
|
|
kind: 'read:account',
|
|
};
|
|
|
|
export default define(meta, async (ps, me) => {
|
|
const antennas = await Antennas.find({
|
|
userId: me.id,
|
|
});
|
|
|
|
return await Promise.all(antennas.map(x => Antennas.pack(x)));
|
|
});
|