mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 22:13:08 +02:00
c09a2a37fe
* Fetch featured * Handle featured change * Fix typo
43 lines
894 B
TypeScript
43 lines
894 B
TypeScript
import $ from 'cafy'; import ID from '../../../../misc/cafy-id';
|
|
import { ILocalUser } from '../../../../models/user';
|
|
import { pack } from '../../../../models/user';
|
|
import { addPinned } from '../../../../services/i/pin';
|
|
import getParams from '../../get-params';
|
|
|
|
export const meta = {
|
|
desc: {
|
|
'ja-JP': '指定した投稿をピン留めします。'
|
|
},
|
|
|
|
requireCredential: true,
|
|
|
|
kind: 'account-write',
|
|
|
|
params: {
|
|
noteId: $.type(ID).note({
|
|
desc: {
|
|
'ja-JP': '対象の投稿のID'
|
|
}
|
|
})
|
|
}
|
|
};
|
|
|
|
export default async (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
|
|
const [ps, psErr] = getParams(meta, params);
|
|
if (psErr) return rej(psErr);
|
|
|
|
// Processing
|
|
try {
|
|
await addPinned(user, ps.noteId);
|
|
} catch (e) {
|
|
return rej(e.message);
|
|
}
|
|
|
|
// Serialize
|
|
const iObj = await pack(user, user, {
|
|
detail: true
|
|
});
|
|
|
|
// Send response
|
|
res(iObj);
|
|
});
|