Compare commits
20 Commits
13.14.2
...
frontend-t
Author | SHA1 | Date | |
---|---|---|---|
![]() |
64c2b4ea1a | ||
![]() |
106897560d | ||
![]() |
c7ec8e801d | ||
![]() |
2d3269273f | ||
![]() |
fa03f61529 | ||
![]() |
dc70a34507 | ||
![]() |
2b4c8c9e0f | ||
![]() |
4aed5968f6 | ||
![]() |
007ed5c929 | ||
![]() |
61c9b0757e | ||
![]() |
62e347c270 | ||
![]() |
bdf390eb7e | ||
![]() |
a52f63ec6a | ||
![]() |
5096be06ac | ||
![]() |
339086995f | ||
![]() |
bbd618a258 | ||
![]() |
ab3cd7b837 | ||
![]() |
8b74d1530e | ||
![]() |
eb7b5f905a | ||
![]() |
c2370a1be6 |
2
.github/workflows/lint.yml
vendored
2
.github/workflows/lint.yml
vendored
@@ -62,6 +62,7 @@ jobs:
|
||||
matrix:
|
||||
workspace:
|
||||
- backend
|
||||
- frontend
|
||||
- misskey-js
|
||||
steps:
|
||||
- uses: actions/checkout@v3.3.0
|
||||
@@ -78,4 +79,5 @@ jobs:
|
||||
cache: 'pnpm'
|
||||
- run: corepack enable
|
||||
- run: pnpm i --frozen-lockfile
|
||||
- run: pnpm --filter misskey-js build # needed for typecheck
|
||||
- run: pnpm --filter ${{ matrix.workspace }} run typecheck
|
||||
|
15
CHANGELOG.md
15
CHANGELOG.md
@@ -1,5 +1,5 @@
|
||||
<!--
|
||||
## 13.x.x (unreleased)
|
||||
## 2023.x.x (unreleased)
|
||||
|
||||
### General
|
||||
-
|
||||
@@ -12,6 +12,19 @@
|
||||
|
||||
-->
|
||||
|
||||
## 2023.8.0 (unreleased)
|
||||
|
||||
### General
|
||||
- OAuth 2.0のサポート
|
||||
|
||||
### Client
|
||||
- Enhance: 自分が押したリアクションのデザインを改善
|
||||
- Fix: サーバー情報画面(`/instance-info/{domain}`)でブロックができないのを修正
|
||||
- Fix: 未読のお知らせの「わかった」をクリック・タップしてもその場で「わかった」が消えない問題を修正
|
||||
|
||||
### 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}"
|
||||
|
@@ -1,6 +1,6 @@
|
||||
import * as fs from 'node:fs';
|
||||
import * as yaml from 'js-yaml';
|
||||
import * as ts from 'typescript';
|
||||
import ts from 'typescript';
|
||||
|
||||
function createMembers(record) {
|
||||
return Object.entries(record)
|
||||
|
14
package.json
14
package.json
@@ -44,7 +44,7 @@
|
||||
"lodash": "4.17.21"
|
||||
},
|
||||
"dependencies": {
|
||||
"execa": "7.1.1",
|
||||
"execa": "7.2.0",
|
||||
"gulp": "4.0.2",
|
||||
"gulp-cssnano": "2.1.3",
|
||||
"gulp-rename": "2.0.0",
|
||||
@@ -54,13 +54,13 @@
|
||||
"typescript": "5.1.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/gulp": "4.0.10",
|
||||
"@types/gulp-rename": "2.0.1",
|
||||
"@typescript-eslint/eslint-plugin": "5.61.0",
|
||||
"@typescript-eslint/parser": "5.61.0",
|
||||
"@types/gulp": "4.0.13",
|
||||
"@types/gulp-rename": "2.0.2",
|
||||
"@typescript-eslint/eslint-plugin": "6.2.0",
|
||||
"@typescript-eslint/parser": "6.2.0",
|
||||
"cross-env": "7.0.3",
|
||||
"cypress": "12.17.1",
|
||||
"eslint": "8.45.0",
|
||||
"cypress": "12.17.2",
|
||||
"eslint": "8.46.0",
|
||||
"start-server-and-test": "2.0.0"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
|
@@ -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() {
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user