Compare commits
9 Commits
5e1b8a245c
...
70e3992521
Author | SHA1 | Date |
---|---|---|
かっこかり | 70e3992521 | |
woxtu | 5096be06ac | |
Kagami Sascha Rosylight | 339086995f | |
syuilo | bbd618a258 | |
syuilo | ab3cd7b837 | |
syuilo | 8b74d1530e | |
Kagami Sascha Rosylight | eb7b5f905a | |
Shun Sakai | c2370a1be6 | |
tamaina | b6790a4320 |
13
CHANGELOG.md
13
CHANGELOG.md
|
@ -1,5 +1,5 @@
|
|||
<!--
|
||||
## 13.x.x (unreleased)
|
||||
## 2023.x.x (unreleased)
|
||||
|
||||
### General
|
||||
-
|
||||
|
@ -12,6 +12,17 @@
|
|||
|
||||
-->
|
||||
|
||||
## 2023.8.0 (unreleased)
|
||||
|
||||
### General
|
||||
- OAuth 2.0のサポート
|
||||
|
||||
### Client
|
||||
-
|
||||
|
||||
### Server
|
||||
-
|
||||
|
||||
## 13.14.2
|
||||
|
||||
### Client
|
||||
|
|
|
@ -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.
|
||||
|
||||
- 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?
|
||||
|
||||
## (3) Improve scalability
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
# SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
# SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
PORT=$(grep '^port:' /misskey/.config/default.yml | awk 'NR==1{print $2; exit}')
|
||||
curl -s -S -o /dev/null "http://localhost:${PORT}"
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
"type": "git",
|
||||
"url": "https://github.com/misskey-dev/misskey.git"
|
||||
},
|
||||
"packageManager": "pnpm@8.6.9",
|
||||
"packageManager": "pnpm@8.6.10",
|
||||
"workspaces": [
|
||||
"packages/frontend",
|
||||
"packages/backend",
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
import Redis from 'ioredis';
|
||||
import { loadConfig } from './built/config.js';
|
||||
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class Init1000000000000 {
|
||||
async up(queryRunner) {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class Pages1556348509290 {
|
||||
async up(queryRunner) {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class UserProfile1556746559567 {
|
||||
async up(queryRunner) {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class PinnedUsers1557476068003 {
|
||||
async up(queryRunner) {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class AddSomeUrls1557761316509 {
|
||||
async up(queryRunner) {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class ObjectStorageSetting1557932705754 {
|
||||
async up(queryRunner) {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class PageLike1558072954435 {
|
||||
async up(queryRunner) {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class UserGroup1558103093633 {
|
||||
async up(queryRunner) {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class UserGroupInvite1558257926829 {
|
||||
async up(queryRunner) {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class UserListJoining1558266512381 {
|
||||
async up(queryRunner) {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class webauthn1561706992953 {
|
||||
async up(queryRunner) {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class ChartIndexes1561873850023 {
|
||||
async up(queryRunner) {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class PasswordLessLogin1562422242907 {
|
||||
async up(queryRunner) {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class PinnedPage1562444565093 {
|
||||
async up(queryRunner) {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class PageTitleHideOption1562448332510 {
|
||||
async up(queryRunner) {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class ModerationLog1562869971568 {
|
||||
async up(queryRunner) {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class UsedUsername1563757595828 {
|
||||
async up(queryRunner) {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class room1565634203341 {
|
||||
async up(queryRunner) {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class CustomEmojiCategory1571220798684 {
|
||||
async up(queryRunner) {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class nodeinfo1572760203493 {
|
||||
async up(queryRunner) {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class TalkFederationId1576269851876 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class ProxyRemoteFiles1576869585998 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class v121579267006611 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class v1221579270193251 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class v1231579282808087 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class v1241579544426412 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class v1251579977526288 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class v1261579993013959 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class v1271580069531114 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class v1281580148575182 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class v1291580154400017 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class v12101580276619901 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class v12111580331224276 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class v12121580508795118 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class v12131580543501339 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class v12141580864313253 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class userGroupInvitation1581526429287 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class userGroupAntenna1581695816408 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class driveUserFolderIdIndex1581708415836 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class promo1581979837262 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class featuredInjecttion1582019042083 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class antennaExclude1582210532752 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class noteReactionLength1582875306439 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class miauth1585361548360 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class customNotification1585385921215 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class apUrl1585772678853 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class AddObjectStorageUseProxy1586624197029 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class remoteReaction1586641139527 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class pageAiScript1586708940386 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class hCaptcha1588044505511 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class pubRelay1589023282116 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class blurhash1595075960584 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class blurhashForAvatarBanner1595077605646 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class instanceIconUrl1595676934834 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class wordMute1595771249699 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class wordMute21595782306083 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class channel1596548170836 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class channel21596786425167 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class objectStorageSetPublicRead1597230137744 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class IncludingNotificationTypes1597236229720 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class addSensitiveIndex1597385880794 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class channelUnread1597459042300 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class ChannelNoteIdDescIndex1597893996136 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class mutingNotificationTypes1600353287890 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class refineAbuseUserReport1603094348345 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class refineAbuseUserReport21603095701770 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class instanceThemeColor1603776877564 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class instanceFavicon1603781553011 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class deleteAutoWatch1604821689616 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class clipDescription1605408848373 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class comments1605408971051 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class instancePinnedPages1605585339718 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class instanceImages1605965516823 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class noCrawle1606191203881 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class instancePinnedClip1607151207216 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class isExplorable1607353487793 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class registry1610277136869 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class registry21610277585759 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class registry31610283021566 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class followersUri1611354329133 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class gallery1611397665007 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class objectStorageS3ForcePathStyle1611547387175 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class announcementEmail1612619156584 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class emailNotificationTypes1613155914446 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class userLang1613181457597 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class useBigintForDriveUsage1613503367223 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class chartV21615965918224 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class chartV221615966519402 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class userLastActiveDate1618637372000 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class userHideOnlineStatus1618639857000 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class passwordReset1619942102890 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class ad1620019354680 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class ad21620364649428 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class addNoteIndexes1621479946000 {
|
||||
constructor() {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export class userProfileDescriptionLength1622679304522 {
|
||||
constructor() {
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue