-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
enhance: ページ機能の改善【作業中】 #14916
Draft
kakkokari-gtyih
wants to merge
11
commits into
misskey-dev:develop
Choose a base branch
from
kakkokari-gtyih:feat-13844-1
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
enhance: ページ機能の改善【作業中】 #14916
kakkokari-gtyih
wants to merge
11
commits into
misskey-dev:develop
from
kakkokari-gtyih:feat-13844-1
+1,487
−438
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
github-actions
bot
added
packages/frontend
Client side specific issue/PR
packages/backend
Server side specific issue/PR
packages/misskey-js
labels
Nov 7, 2024
このPRによるapi.jsonの差分 差分はこちら--- base
+++ head
@@ -62462,6 +62462,7 @@
},
"name": {
"type": "string",
+ "pattern": "^[a-zA-Z0-9_-]{1,256}$",
"minLength": 1
},
"summary": {
@@ -62514,9 +62515,7 @@
"required": [
"title",
"name",
- "content",
- "variables",
- "script"
+ "content"
]
}
}
@@ -62560,6 +62559,15 @@
}
}
},
+ "CONTENT_TOO_LARGE": {
+ "value": {
+ "error": {
+ "message": "Content is too large.",
+ "code": "CONTENT_TOO_LARGE",
+ "id": "2a93fcc9-4cd7-4885-9e5b-be56ed8f4d4f"
+ }
+ }
+ },
"INVALID_PARAM": {
"value": {
"error": {
@@ -62859,6 +62867,29 @@
"tags": [
"pages"
],
+ "requestBody": {
+ "required": true,
+ "content": {
+ "application/json": {
+ "schema": {
+ "type": "object",
+ "properties": {
+ "offset": {
+ "type": "integer",
+ "minimum": 0,
+ "default": 0
+ },
+ "limit": {
+ "type": "integer",
+ "minimum": 1,
+ "maximum": 100,
+ "default": 10
+ }
+ }
+ }
+ }
+ }
+ },
"responses": {
"200": {
"description": "OK (with results)",
@@ -63532,6 +63563,7 @@
},
"name": {
"type": "string",
+ "pattern": "^[a-zA-Z0-9_-]{1,256}$",
"minLength": 1
},
"summary": {
@@ -63633,6 +63665,15 @@
}
}
},
+ "CONTENT_TOO_LARGE": {
+ "value": {
+ "error": {
+ "message": "Content is too large.",
+ "code": "CONTENT_TOO_LARGE",
+ "id": "2a93fcc9-4cd7-4885-9e5b-be56ed8f4d4f"
+ }
+ }
+ },
"INVALID_PARAM": {
"value": {
"error": {
@@ -80422,6 +80463,32 @@
]
},
{
+ "type": "object",
+ "properties": {
+ "id": {
+ "type": "string"
+ },
+ "type": {
+ "type": "string",
+ "enum": [
+ "heading"
+ ]
+ },
+ "level": {
+ "type": "number"
+ },
+ "text": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "type",
+ "level",
+ "text"
+ ]
+ },
+ {
"type": "object",
"properties": {
"id": { |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
packages/backend
Server side specific issue/PR
packages/frontend
Client side specific issue/PR
packages/misskey-js
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What
※一通りやったらPRを分割する予定(maintainerアクセスのためにPRを立てている)
Why
Fix #13844
Fix #12558
Additional info (optional)
まだ新エディタには保存処理とかを実装してないのでマージできない
Checklist