parent
037837b551
commit
0e4a111f81
1714 changed files with 20803 additions and 11751 deletions
31
packages/backend/src/server/api/endpoints/i/revoke-token.ts
Normal file
31
packages/backend/src/server/api/endpoints/i/revoke-token.ts
Normal file
|
@ -0,0 +1,31 @@
|
|||
import $ from 'cafy';
|
||||
import define from '../../define';
|
||||
import { AccessTokens } from '@/models/index';
|
||||
import { ID } from '@/misc/cafy-id';
|
||||
import { publishUserEvent } from '@/services/stream';
|
||||
|
||||
export const meta = {
|
||||
requireCredential: true as const,
|
||||
|
||||
secure: true,
|
||||
|
||||
params: {
|
||||
tokenId: {
|
||||
validator: $.type(ID)
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
export default define(meta, async (ps, user) => {
|
||||
const token = await AccessTokens.findOne(ps.tokenId);
|
||||
|
||||
if (token) {
|
||||
await AccessTokens.delete({
|
||||
id: ps.tokenId,
|
||||
userId: user.id,
|
||||
});
|
||||
|
||||
// Terminate streaming
|
||||
publishUserEvent(user.id, 'terminate');
|
||||
}
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue