Merge remote-branch 'misskey/develop'

This commit is contained in:
NoriDev 2023-08-01 17:16:39 +09:00
commit 61c871517d
1658 changed files with 10155 additions and 438 deletions

View file

@ -1,5 +1,5 @@
<!-- <!--
## 13.x.x (unreleased) ## 2023.x.x (unreleased)
### General ### General
- -
@ -12,6 +12,18 @@
--> -->
## 2023.8.0 (unreleased)
### General
- OAuth 2.0のサポート
### Client
- Fix: サーバー情報画面(`/instance-info/{domain}`)でブロックができないのを修正
- Fix: 未読のお知らせの「わかった」をクリック・タップしてもその場で「わかった」が消えない問題を修正
### Server
-
## 13.14.2 ## 13.14.2
### Client ### Client

View file

@ -22,7 +22,7 @@ This is the phase we are at now. We need to make a high-maintenance environment
Once Phase 1 is complete and an environment conducive to the development of a stable system is in place, the implementation of new functions can begin gradually. Once Phase 1 is complete and an environment conducive to the development of a stable system is in place, the implementation of new functions can begin gradually.
- Improve features for moderation - Improve features for moderation
- OAuth2 support https://github.com/misskey-dev/misskey/issues/8262 - ~~OAuth2 support https://github.com/misskey-dev/misskey/issues/8262~~ → Done ✔️
- GraphQL support? - GraphQL support?
## (3) Improve scalability ## (3) Improve scalability

View file

@ -1,4 +1,7 @@
#!/bin/bash #!/bin/bash
# SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
# SPDX-License-Identifier: AGPL-3.0-only
PORT=$(grep '^port:' /cherrypick/.config/default.yml | awk 'NR==1{print $2; exit}') PORT=$(grep '^port:' /cherrypick/.config/default.yml | awk 'NR==1{print $2; exit}')
curl -s -S -o /dev/null "http://localhost:${PORT}" curl -s -S -o /dev/null "http://localhost:${PORT}"

View file

@ -1,3 +1,8 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
import Redis from 'ioredis'; import Redis from 'ioredis';
import { loadConfig } from './built/config.js'; import { loadConfig } from './built/config.js';

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class Init1000000000000 { export class Init1000000000000 {
async up(queryRunner) { async up(queryRunner) {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class Pages1556348509290 { export class Pages1556348509290 {
async up(queryRunner) { async up(queryRunner) {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class UserProfile1556746559567 { export class UserProfile1556746559567 {
async up(queryRunner) { async up(queryRunner) {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class PinnedUsers1557476068003 { export class PinnedUsers1557476068003 {
async up(queryRunner) { async up(queryRunner) {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class AddSomeUrls1557761316509 { export class AddSomeUrls1557761316509 {
async up(queryRunner) { async up(queryRunner) {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class ObjectStorageSetting1557932705754 { export class ObjectStorageSetting1557932705754 {
async up(queryRunner) { async up(queryRunner) {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class PageLike1558072954435 { export class PageLike1558072954435 {
async up(queryRunner) { async up(queryRunner) {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class UserGroup1558103093633 { export class UserGroup1558103093633 {
async up(queryRunner) { async up(queryRunner) {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class UserGroupInvite1558257926829 { export class UserGroupInvite1558257926829 {
async up(queryRunner) { async up(queryRunner) {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class UserListJoining1558266512381 { export class UserListJoining1558266512381 {
async up(queryRunner) { async up(queryRunner) {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class webauthn1561706992953 { export class webauthn1561706992953 {
async up(queryRunner) { async up(queryRunner) {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class ChartIndexes1561873850023 { export class ChartIndexes1561873850023 {
async up(queryRunner) { async up(queryRunner) {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class PasswordLessLogin1562422242907 { export class PasswordLessLogin1562422242907 {
async up(queryRunner) { async up(queryRunner) {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class PinnedPage1562444565093 { export class PinnedPage1562444565093 {
async up(queryRunner) { async up(queryRunner) {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class PageTitleHideOption1562448332510 { export class PageTitleHideOption1562448332510 {
async up(queryRunner) { async up(queryRunner) {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class ModerationLog1562869971568 { export class ModerationLog1562869971568 {
async up(queryRunner) { async up(queryRunner) {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class UsedUsername1563757595828 { export class UsedUsername1563757595828 {
async up(queryRunner) { async up(queryRunner) {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class room1565634203341 { export class room1565634203341 {
async up(queryRunner) { async up(queryRunner) {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class CustomEmojiCategory1571220798684 { export class CustomEmojiCategory1571220798684 {
async up(queryRunner) { async up(queryRunner) {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class nodeinfo1572760203493 { export class nodeinfo1572760203493 {
async up(queryRunner) { async up(queryRunner) {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class TalkFederationId1576269851876 { export class TalkFederationId1576269851876 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class ProxyRemoteFiles1576869585998 { export class ProxyRemoteFiles1576869585998 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class v121579267006611 { export class v121579267006611 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class v1221579270193251 { export class v1221579270193251 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class v1231579282808087 { export class v1231579282808087 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class v1241579544426412 { export class v1241579544426412 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class v1251579977526288 { export class v1251579977526288 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class v1261579993013959 { export class v1261579993013959 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class v1271580069531114 { export class v1271580069531114 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class v1281580148575182 { export class v1281580148575182 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class v1291580154400017 { export class v1291580154400017 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class v12101580276619901 { export class v12101580276619901 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class v12111580331224276 { export class v12111580331224276 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class v12121580508795118 { export class v12121580508795118 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class v12131580543501339 { export class v12131580543501339 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class v12141580864313253 { export class v12141580864313253 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class userGroupInvitation1581526429287 { export class userGroupInvitation1581526429287 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class userGroupAntenna1581695816408 { export class userGroupAntenna1581695816408 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class driveUserFolderIdIndex1581708415836 { export class driveUserFolderIdIndex1581708415836 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class promo1581979837262 { export class promo1581979837262 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class featuredInjecttion1582019042083 { export class featuredInjecttion1582019042083 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class antennaExclude1582210532752 { export class antennaExclude1582210532752 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class noteReactionLength1582875306439 { export class noteReactionLength1582875306439 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class miauth1585361548360 { export class miauth1585361548360 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class customNotification1585385921215 { export class customNotification1585385921215 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class apUrl1585772678853 { export class apUrl1585772678853 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class AddObjectStorageUseProxy1586624197029 { export class AddObjectStorageUseProxy1586624197029 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class remoteReaction1586641139527 { export class remoteReaction1586641139527 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class pageAiScript1586708940386 { export class pageAiScript1586708940386 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class hCaptcha1588044505511 { export class hCaptcha1588044505511 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class pubRelay1589023282116 { export class pubRelay1589023282116 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class blurhash1595075960584 { export class blurhash1595075960584 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class blurhashForAvatarBanner1595077605646 { export class blurhashForAvatarBanner1595077605646 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class instanceIconUrl1595676934834 { export class instanceIconUrl1595676934834 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class wordMute1595771249699 { export class wordMute1595771249699 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class wordMute21595782306083 { export class wordMute21595782306083 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class channel1596548170836 { export class channel1596548170836 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class channel21596786425167 { export class channel21596786425167 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class objectStorageSetPublicRead1597230137744 { export class objectStorageSetPublicRead1597230137744 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class IncludingNotificationTypes1597236229720 { export class IncludingNotificationTypes1597236229720 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class addSensitiveIndex1597385880794 { export class addSensitiveIndex1597385880794 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class channelUnread1597459042300 { export class channelUnread1597459042300 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class ChannelNoteIdDescIndex1597893996136 { export class ChannelNoteIdDescIndex1597893996136 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class mutingNotificationTypes1600353287890 { export class mutingNotificationTypes1600353287890 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class refineAbuseUserReport1603094348345 { export class refineAbuseUserReport1603094348345 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class refineAbuseUserReport21603095701770 { export class refineAbuseUserReport21603095701770 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class instanceThemeColor1603776877564 { export class instanceThemeColor1603776877564 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class instanceFavicon1603781553011 { export class instanceFavicon1603781553011 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class deleteAutoWatch1604821689616 { export class deleteAutoWatch1604821689616 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class clipDescription1605408848373 { export class clipDescription1605408848373 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class comments1605408971051 { export class comments1605408971051 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class instancePinnedPages1605585339718 { export class instancePinnedPages1605585339718 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class instanceImages1605965516823 { export class instanceImages1605965516823 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class noCrawle1606191203881 { export class noCrawle1606191203881 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class instancePinnedClip1607151207216 { export class instancePinnedClip1607151207216 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class isExplorable1607353487793 { export class isExplorable1607353487793 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class registry1610277136869 { export class registry1610277136869 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class registry21610277585759 { export class registry21610277585759 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class registry31610283021566 { export class registry31610283021566 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class followersUri1611354329133 { export class followersUri1611354329133 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class gallery1611397665007 { export class gallery1611397665007 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class objectStorageS3ForcePathStyle1611547387175 { export class objectStorageS3ForcePathStyle1611547387175 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class announcementEmail1612619156584 { export class announcementEmail1612619156584 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class emailNotificationTypes1613155914446 { export class emailNotificationTypes1613155914446 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class userLang1613181457597 { export class userLang1613181457597 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class useBigintForDriveUsage1613503367223 { export class useBigintForDriveUsage1613503367223 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class chartV21615965918224 { export class chartV21615965918224 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class chartV221615966519402 { export class chartV221615966519402 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class userLastActiveDate1618637372000 { export class userLastActiveDate1618637372000 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class userHideOnlineStatus1618639857000 { export class userHideOnlineStatus1618639857000 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class passwordReset1619942102890 { export class passwordReset1619942102890 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class ad1620019354680 { export class ad1620019354680 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class ad21620364649428 { export class ad21620364649428 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class addNoteIndexes1621479946000 { export class addNoteIndexes1621479946000 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class userProfileDescriptionLength1622679304522 { export class userProfileDescriptionLength1622679304522 {
constructor() { constructor() {

View file

@ -1,4 +1,7 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class logMessageLength1622681548499 { export class logMessageLength1622681548499 {
constructor() { constructor() {

Some files were not shown because too many files have changed in this diff Show more