parent
a4a171781b
commit
a6cd97ca9a
|
@ -34,8 +34,9 @@
|
||||||
- アカウントの初期設定ウィザードにあとでボタンを追加
|
- アカウントの初期設定ウィザードにあとでボタンを追加
|
||||||
- Fix: URLプレビューで情報が取得できなかった際の挙動を修正
|
- Fix: URLプレビューで情報が取得できなかった際の挙動を修正
|
||||||
- Fix: Safari、Firefoxでの新規登録時、パスワードマネージャーにメールアドレスが登録されていた挙動を修正
|
- Fix: Safari、Firefoxでの新規登録時、パスワードマネージャーにメールアドレスが登録されていた挙動を修正
|
||||||
- fix:ロールタイムラインが無効でも投稿が流れてしまう問題の修正
|
- Fix: ロールタイムラインが無効でも投稿が流れてしまう問題の修正
|
||||||
- fix:ロールタイムラインにて全ての投稿が流れてしまう問題の修正
|
- Fix: ロールタイムラインにて全ての投稿が流れてしまう問題の修正
|
||||||
|
- Fix: 「アクセストークンの管理」画面でアプリの情報が表示されない問題の修正
|
||||||
|
|
||||||
### Server
|
### Server
|
||||||
- bullをbull-mqにアップグレードし、ジョブキューのパフォーマンスを改善
|
- bullをbull-mqにアップグレードし、ジョブキューのパフォーマンスを改善
|
||||||
|
|
|
@ -55,7 +55,6 @@ export default class extends Endpoint<typeof meta, typeof paramDef> {
|
||||||
throw new ApiError(meta.errors.noSuchSession);
|
throw new ApiError(meta.errors.noSuchSession);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Generate access token
|
|
||||||
const accessToken = secureRndstr(32, true);
|
const accessToken = secureRndstr(32, true);
|
||||||
|
|
||||||
// Fetch exist access token
|
// Fetch exist access token
|
||||||
|
@ -65,7 +64,6 @@ export default class extends Endpoint<typeof meta, typeof paramDef> {
|
||||||
});
|
});
|
||||||
|
|
||||||
if (exist == null) {
|
if (exist == null) {
|
||||||
// Lookup app
|
|
||||||
const app = await this.appsRepository.findOneByOrFail({ id: session.appId });
|
const app = await this.appsRepository.findOneByOrFail({ id: session.appId });
|
||||||
|
|
||||||
// Generate Hash
|
// Generate Hash
|
||||||
|
@ -75,7 +73,6 @@ export default class extends Endpoint<typeof meta, typeof paramDef> {
|
||||||
|
|
||||||
const now = new Date();
|
const now = new Date();
|
||||||
|
|
||||||
// Insert access token doc
|
|
||||||
await this.accessTokensRepository.insert({
|
await this.accessTokensRepository.insert({
|
||||||
id: this.idService.genId(),
|
id: this.idService.genId(),
|
||||||
createdAt: now,
|
createdAt: now,
|
||||||
|
|
|
@ -26,7 +26,8 @@ export default class extends Endpoint<typeof meta, typeof paramDef> {
|
||||||
) {
|
) {
|
||||||
super(meta, paramDef, async (ps, me) => {
|
super(meta, paramDef, async (ps, me) => {
|
||||||
const query = this.accessTokensRepository.createQueryBuilder('token')
|
const query = this.accessTokensRepository.createQueryBuilder('token')
|
||||||
.where('token.userId = :userId', { userId: me.id });
|
.where('token.userId = :userId', { userId: me.id })
|
||||||
|
.leftJoinAndSelect('token.app', 'app');
|
||||||
|
|
||||||
switch (ps.sort) {
|
switch (ps.sort) {
|
||||||
case '+createdAt': query.orderBy('token.createdAt', 'DESC'); break;
|
case '+createdAt': query.orderBy('token.createdAt', 'DESC'); break;
|
||||||
|
@ -40,7 +41,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> {
|
||||||
|
|
||||||
return await Promise.all(tokens.map(token => ({
|
return await Promise.all(tokens.map(token => ({
|
||||||
id: token.id,
|
id: token.id,
|
||||||
name: token.name,
|
name: token.name ?? token.app?.name,
|
||||||
createdAt: token.createdAt,
|
createdAt: token.createdAt,
|
||||||
lastUsedAt: token.lastUsedAt,
|
lastUsedAt: token.lastUsedAt,
|
||||||
permission: token.permission,
|
permission: token.permission,
|
||||||
|
|
Loading…
Reference in New Issue