mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 11:13:08 +02:00
78df3dc484
* docs: category & description for reset password * docs: category & description for testing * docs: descriptions for groups endpoints * docs: descriptions for drive file endpoints * docs: descriptions for sw endpoints * docs: descriptions for user list endpoints * docs: descriptions & result type for gallery posts * docs: descriptions & result type for user endpoints * docs: add return type for stats
30 lines
697 B
TypeScript
30 lines
697 B
TypeScript
import define from '../define.js';
|
|
import { ApiError } from '../error.js';
|
|
import { resetDb } from '@/db/postgre.js';
|
|
|
|
export const meta = {
|
|
tags: ['non-productive'],
|
|
|
|
requireCredential: false,
|
|
|
|
description: 'Only available when running with <code>NODE_ENV=testing</code>. Reset the database and flush Redis.',
|
|
|
|
errors: {
|
|
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {},
|
|
required: [],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, async (ps, user) => {
|
|
if (process.env.NODE_ENV !== 'test') throw 'NODE_ENV is not a test';
|
|
|
|
await resetDb();
|
|
|
|
await new Promise(resolve => setTimeout(resolve, 1000));
|
|
});
|