Skip to content
Snippets Groups Projects
Unverified Commit d9775c14 authored by MeiMei's avatar MeiMei Committed by GitHub
Browse files

fix: toolsが動かないのを修正 (#8008)

* Move tools

* Fix DB
parent b4ebf254
No related branches found
No related tags found
No related merge requests found
import { Emojis } from '@/models/index';
import { initDb } from '@/db/postgre';
import { genId } from '@/misc/gen-id';
async function main(name: string, url: string, alias?: string): Promise<any> {
await initDb();
const { Emojis } = await import('@/models/index');
const aliases = alias != null ? [ alias ] : [];
await Emojis.save({
......
import { initDb } from '../db/postgre';
import { getRepository } from 'typeorm';
import { User } from '@/models/entities/user';
async function main(username: string) {
if (!username) throw `username required`;
username = username.replace(/^@/, '');
await initDb();
const Users = getRepository(User);
const { Users } = await import('@/models/index');
const res = await Users.update({
usernameLower: username.toLowerCase(),
......
import { initDb } from '../db/postgre';
import { getRepository } from 'typeorm';
import { User } from '@/models/entities/user';
async function main(username: string) {
if (!username) throw `username required`;
username = username.replace(/^@/, '');
await initDb();
const Users = getRepository(User);
const { Users } = await import('@/models/index');
const res = await Users.update({
usernameLower: username.toLowerCase(),
......
import { updateQuestion } from '@/remote/activitypub/models/question';
import { initDb } from '@/db/postgre';
async function main(uri: string): Promise<any> {
await initDb();
const { updateQuestion } = await import('@/remote/activitypub/models/question');
return await updateQuestion(uri);
}
......
import { Users, Signins } from '@/models/index';
import { initDb } from '@/db/postgre';
// node built/tools/show-signin-history username
// => {Success} {Date} {IPAddrsss}
......@@ -10,6 +10,9 @@ import { Users, Signins } from '@/models/index';
// with full request headers
async function main(username: string, headers?: string[]) {
await initDb();
const { Users, Signins } = await import('@/models/index');
const user = await Users.findOne({
host: null,
usernameLower: username.toLowerCase(),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment