├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── dist ├── openapi.json └── openapi.yaml ├── index.js ├── package.json └── src ├── components ├── index.yaml ├── parameters │ ├── answer_id.path.yaml │ ├── answer_id.query.yaml │ ├── answer_ids.path.yaml │ ├── answer_ids.yaml │ ├── article_id.path.yaml │ ├── article_id.query.yaml │ ├── article_ids.path.yaml │ ├── comment_id.path.yaml │ ├── comment_id.query.yaml │ ├── comment_ids.path.yaml │ ├── commentable_id.query.yaml │ ├── commentable_type.query.yaml │ ├── disabled.query.yaml │ ├── email.query.yaml │ ├── end_date.query.yaml │ ├── image_item_id.query.yaml │ ├── image_item_type.query.yaml │ ├── image_key.path.yaml │ ├── image_key.query.yaml │ ├── image_keys.path.yaml │ ├── include.answer.yaml │ ├── include.article.yaml │ ├── include.comment.yaml │ ├── include.image.yaml │ ├── include.notification.yaml │ ├── include.question.yaml │ ├── include.report.yaml │ ├── include.reportReason.yaml │ ├── include.stats.yaml │ ├── include.topic.yaml │ ├── include.user.yaml │ ├── index.yaml │ ├── notification_id.path.yaml │ ├── notification_ids.path.yaml │ ├── notification_read.query.yaml │ ├── notification_type.query.yaml │ ├── order.answers.yaml │ ├── order.articles.yaml │ ├── order.comments.yaml │ ├── order.questions.yaml │ ├── order.topics.yaml │ ├── order.users.yaml │ ├── page.yaml │ ├── per_page.yaml │ ├── question_id.path.yaml │ ├── question_id.query.yaml │ ├── question_ids.path.yaml │ ├── report_targets.yaml │ ├── reportable_id.path.yaml │ ├── reportable_type.path.yaml │ ├── reportable_type.query.yaml │ ├── start_date.query.yaml │ ├── token.yaml │ ├── topic_id.path.yaml │ ├── topic_id.query.yaml │ ├── topic_ids.path.yaml │ ├── topic_name.query.yaml │ ├── trashed.query.yaml │ ├── user_id.path.yaml │ ├── user_id.query.yaml │ ├── user_ids.path.yaml │ ├── username.query.yaml │ └── vote_type.query.yaml ├── requestBodies │ ├── Answer.yaml │ ├── ArticleCreate.yaml │ ├── ArticleUpdate.yaml │ ├── Comment.yaml │ ├── Email.yaml │ ├── ImageUpdate.yaml │ ├── ImageUpload.yaml │ ├── Option.yaml │ ├── QuestionCreate.yaml │ ├── QuestionUpdate.yaml │ ├── Report.yaml │ ├── TopicCreate.yaml │ ├── TopicUpdate.yaml │ ├── User.yaml │ ├── UserAvatar.yaml │ ├── UserCover.yaml │ ├── UserLogin.yaml │ ├── UserPasswordReset.yaml │ ├── UserRegister.yaml │ ├── UserSendEmail.yaml │ ├── Vote.yaml │ └── index.yaml ├── responses │ ├── Answer.yaml │ ├── Answers.yaml │ ├── Article.yaml │ ├── Articles.yaml │ ├── Captcha.yaml │ ├── Comment.yaml │ ├── Comments.yaml │ ├── Email.yaml │ ├── Empty.yaml │ ├── Error.yaml │ ├── FollowerCount.yaml │ ├── Image.yaml │ ├── Images.yaml │ ├── Notification.yaml │ ├── NotificationCount.yaml │ ├── Notifications.yaml │ ├── Option.yaml │ ├── Question.yaml │ ├── Questions.yaml │ ├── Report.yaml │ ├── ReportGroups.yaml │ ├── Reports.yaml │ ├── Stats.yaml │ ├── Token.yaml │ ├── Topic.yaml │ ├── Topics.yaml │ ├── User.yaml │ ├── UserAvatar.yaml │ ├── UserCover.yaml │ ├── Users.yaml │ ├── VoteCount.yaml │ └── index.yaml ├── schemas │ ├── Answer.yaml │ ├── Article.yaml │ ├── Captcha.yaml │ ├── CodeSuccess.yaml │ ├── Comment.yaml │ ├── Email.yaml │ ├── FollowerCount.yaml │ ├── Image.yaml │ ├── ImageUrls.yaml │ ├── Notification.yaml │ ├── NotificationCount.yaml │ ├── Option.yaml │ ├── Pagination.yaml │ ├── Question.yaml │ ├── Report.yaml │ ├── ReportGroup.yaml │ ├── Stats.yaml │ ├── StatsNewItems.yaml │ ├── SystemInfo.yaml │ ├── Token.yaml │ ├── Topic.yaml │ ├── TopicCover.yaml │ ├── User.yaml │ ├── UserAvatar.yaml │ ├── UserCover.yaml │ ├── VoteCount.yaml │ ├── inRelationship │ │ ├── Answer.yaml │ │ ├── Article.yaml │ │ ├── Comment.yaml │ │ ├── Question.yaml │ │ ├── Topic.yaml │ │ ├── Topics.yaml │ │ └── User.yaml │ ├── index.yaml │ ├── relationships │ │ ├── Answer.yaml │ │ ├── Article.yaml │ │ ├── Comment.yaml │ │ ├── Image.yaml │ │ ├── Notification.yaml │ │ ├── Question.yaml │ │ ├── Report.yaml │ │ ├── ReportGroup.yaml │ │ ├── Topic.yaml │ │ └── User.yaml │ ├── requestBody │ │ ├── Answer.yaml │ │ ├── ArticleCreate.yaml │ │ ├── ArticleUpdate.yaml │ │ ├── Comment.yaml │ │ ├── ImageUpdate.yaml │ │ ├── ImageUpload.yaml │ │ ├── OptionUpdate.yaml │ │ ├── QuestionCreate.yaml │ │ ├── QuestionUpdate.yaml │ │ ├── Report.yaml │ │ ├── TopicCreate.yaml │ │ ├── TopicUpdate.yaml │ │ ├── User.yaml │ │ ├── UserAvatar.yaml │ │ ├── UserCover.yaml │ │ ├── UserLogin.yaml │ │ ├── UserPasswordReset.yaml │ │ ├── UserRegister.yaml │ │ ├── UserSendEmail.yaml │ │ └── Vote.yaml │ └── response │ │ ├── Answer.yaml │ │ ├── Answers.yaml │ │ ├── Article.yaml │ │ ├── Articles.yaml │ │ ├── Captcha.yaml │ │ ├── Comment.yaml │ │ ├── Comments.yaml │ │ ├── Email.yaml │ │ ├── Empty.yaml │ │ ├── Error.yaml │ │ ├── FollowerCount.yaml │ │ ├── Image.yaml │ │ ├── Images.yaml │ │ ├── Notification.yaml │ │ ├── NotificationCount.yaml │ │ ├── Notifications.yaml │ │ ├── Option.yaml │ │ ├── Question.yaml │ │ ├── Questions.yaml │ │ ├── Report.yaml │ │ ├── ReportGroups.yaml │ │ ├── Reports.yaml │ │ ├── Stats.yaml │ │ ├── Token.yaml │ │ ├── Topic.yaml │ │ ├── Topics.yaml │ │ ├── User.yaml │ │ ├── UserAvatar.yaml │ │ ├── UserCover.yaml │ │ ├── Users.yaml │ │ └── VoteCount.yaml └── securitySchemes │ ├── index.yaml │ └── token.yaml ├── index.html ├── index.yaml ├── info └── index.yaml ├── paths ├── answers.yaml ├── answers.{answer_ids}.trash.yaml ├── answers.{answer_ids}.untrash.yaml ├── answers.{answer_ids}.yaml ├── answers.{answer_id}.comments.yaml ├── answers.{answer_id}.trash.yaml ├── answers.{answer_id}.untrash.yaml ├── answers.{answer_id}.voters.yaml ├── answers.{answer_id}.yaml ├── articles.yaml ├── articles.{article_ids}.trash.yaml ├── articles.{article_ids}.untrash.yaml ├── articles.{article_ids}.yaml ├── articles.{article_id}.comments.yaml ├── articles.{article_id}.followers.yaml ├── articles.{article_id}.trash.yaml ├── articles.{article_id}.untrash.yaml ├── articles.{article_id}.voters.yaml ├── articles.{article_id}.yaml ├── captchas.yaml ├── comments.yaml ├── comments.{comment_ids}.trash.yaml ├── comments.{comment_ids}.untrash.yaml ├── comments.{comment_ids}.yaml ├── comments.{comment_id}.replies.yaml ├── comments.{comment_id}.trash.yaml ├── comments.{comment_id}.untrash.yaml ├── comments.{comment_id}.voters.yaml ├── comments.{comment_id}.yaml ├── emails.yaml ├── images.yaml ├── images.{keys}.yaml ├── images.{key}.yaml ├── index.yaml ├── notifications.count.yaml ├── notifications.read.yaml ├── notifications.yaml ├── notifications.{notification_ids}.read.yaml ├── notifications.{notification_ids}.yaml ├── notifications.{notification_id}.read.yaml ├── notifications.{notification_id}.yaml ├── options.yaml ├── questions.yaml ├── questions.{question_ids}.trash.yaml ├── questions.{question_ids}.untrash.yaml ├── questions.{question_ids}.yaml ├── questions.{question_id}.answers.yaml ├── questions.{question_id}.comments.yaml ├── questions.{question_id}.followers.yaml ├── questions.{question_id}.trash.yaml ├── questions.{question_id}.untrash.yaml ├── questions.{question_id}.voters.yaml ├── questions.{question_id}.yaml ├── reports.yaml ├── reports.{report_targets}.yaml ├── reports.{reportable_type}-{reportable_id}.yaml ├── stats.yaml ├── tokens.yaml ├── topics.yaml ├── topics.{topic_ids}.trash.yaml ├── topics.{topic_ids}.untrash.yaml ├── topics.{topic_ids}.yaml ├── topics.{topic_id}.articles.yaml ├── topics.{topic_id}.followers.yaml ├── topics.{topic_id}.questions.yaml ├── topics.{topic_id}.trash.yaml ├── topics.{topic_id}.untrash.yaml ├── topics.{topic_id}.yaml ├── user.answers.yaml ├── user.articles.yaml ├── user.avatar.yaml ├── user.comments.yaml ├── user.cover.yaml ├── user.followees.yaml ├── user.followers.yaml ├── user.following_articles.yaml ├── user.following_questions.yaml ├── user.following_topics.yaml ├── user.password.email.yaml ├── user.password.yaml ├── user.questions.yaml ├── user.register.email.yaml ├── user.yaml ├── users.yaml ├── users.{user_ids}.disable.yaml ├── users.{user_ids}.enable.yaml ├── users.{user_id}.answers.yaml ├── users.{user_id}.articles.yaml ├── users.{user_id}.avatar.yaml ├── users.{user_id}.comments.yaml ├── users.{user_id}.cover.yaml ├── users.{user_id}.disable.yaml ├── users.{user_id}.enable.yaml ├── users.{user_id}.followees.yaml ├── users.{user_id}.followers.yaml ├── users.{user_id}.following_articles.yaml ├── users.{user_id}.following_questions.yaml ├── users.{user_id}.following_topics.yaml ├── users.{user_id}.questions.yaml └── users.{user_id}.yaml ├── servers └── index.yaml └── tags └── index.yaml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/README.md -------------------------------------------------------------------------------- /dist/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/dist/openapi.json -------------------------------------------------------------------------------- /dist/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/dist/openapi.yaml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/package.json -------------------------------------------------------------------------------- /src/components/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/index.yaml -------------------------------------------------------------------------------- /src/components/parameters/answer_id.path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/answer_id.path.yaml -------------------------------------------------------------------------------- /src/components/parameters/answer_id.query.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/answer_id.query.yaml -------------------------------------------------------------------------------- /src/components/parameters/answer_ids.path.yaml: -------------------------------------------------------------------------------- 1 | name: answer_ids 2 | in: path 3 | description: 多个用 `,` 分隔的回答ID,最多可提供 100 个 ID 4 | required: true 5 | schema: 6 | type: string 7 | example: 1,2,3 8 | -------------------------------------------------------------------------------- /src/components/parameters/answer_ids.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/answer_ids.yaml -------------------------------------------------------------------------------- /src/components/parameters/article_id.path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/article_id.path.yaml -------------------------------------------------------------------------------- /src/components/parameters/article_id.query.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/article_id.query.yaml -------------------------------------------------------------------------------- /src/components/parameters/article_ids.path.yaml: -------------------------------------------------------------------------------- 1 | name: article_ids 2 | in: path 3 | description: 多个用 `,` 分隔的文章ID,最多可提供 100 个 ID 4 | required: true 5 | schema: 6 | type: string 7 | example: 1,2,3 8 | -------------------------------------------------------------------------------- /src/components/parameters/comment_id.path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/comment_id.path.yaml -------------------------------------------------------------------------------- /src/components/parameters/comment_id.query.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/comment_id.query.yaml -------------------------------------------------------------------------------- /src/components/parameters/comment_ids.path.yaml: -------------------------------------------------------------------------------- 1 | name: comment_ids 2 | in: path 3 | description: 多个用 `,` 分隔的评论ID,最多可提供 100 个 ID 4 | required: true 5 | schema: 6 | type: string 7 | example: 1,2,3 8 | -------------------------------------------------------------------------------- /src/components/parameters/commentable_id.query.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/commentable_id.query.yaml -------------------------------------------------------------------------------- /src/components/parameters/commentable_type.query.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/commentable_type.query.yaml -------------------------------------------------------------------------------- /src/components/parameters/disabled.query.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/disabled.query.yaml -------------------------------------------------------------------------------- /src/components/parameters/email.query.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/email.query.yaml -------------------------------------------------------------------------------- /src/components/parameters/end_date.query.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/end_date.query.yaml -------------------------------------------------------------------------------- /src/components/parameters/image_item_id.query.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/image_item_id.query.yaml -------------------------------------------------------------------------------- /src/components/parameters/image_item_type.query.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/image_item_type.query.yaml -------------------------------------------------------------------------------- /src/components/parameters/image_key.path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/image_key.path.yaml -------------------------------------------------------------------------------- /src/components/parameters/image_key.query.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/image_key.query.yaml -------------------------------------------------------------------------------- /src/components/parameters/image_keys.path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/image_keys.path.yaml -------------------------------------------------------------------------------- /src/components/parameters/include.answer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/include.answer.yaml -------------------------------------------------------------------------------- /src/components/parameters/include.article.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/include.article.yaml -------------------------------------------------------------------------------- /src/components/parameters/include.comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/include.comment.yaml -------------------------------------------------------------------------------- /src/components/parameters/include.image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/include.image.yaml -------------------------------------------------------------------------------- /src/components/parameters/include.notification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/include.notification.yaml -------------------------------------------------------------------------------- /src/components/parameters/include.question.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/include.question.yaml -------------------------------------------------------------------------------- /src/components/parameters/include.report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/include.report.yaml -------------------------------------------------------------------------------- /src/components/parameters/include.reportReason.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/include.reportReason.yaml -------------------------------------------------------------------------------- /src/components/parameters/include.stats.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/include.stats.yaml -------------------------------------------------------------------------------- /src/components/parameters/include.topic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/include.topic.yaml -------------------------------------------------------------------------------- /src/components/parameters/include.user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/include.user.yaml -------------------------------------------------------------------------------- /src/components/parameters/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/index.yaml -------------------------------------------------------------------------------- /src/components/parameters/notification_id.path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/notification_id.path.yaml -------------------------------------------------------------------------------- /src/components/parameters/notification_ids.path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/notification_ids.path.yaml -------------------------------------------------------------------------------- /src/components/parameters/notification_read.query.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/notification_read.query.yaml -------------------------------------------------------------------------------- /src/components/parameters/notification_type.query.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/notification_type.query.yaml -------------------------------------------------------------------------------- /src/components/parameters/order.answers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/order.answers.yaml -------------------------------------------------------------------------------- /src/components/parameters/order.articles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/order.articles.yaml -------------------------------------------------------------------------------- /src/components/parameters/order.comments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/order.comments.yaml -------------------------------------------------------------------------------- /src/components/parameters/order.questions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/order.questions.yaml -------------------------------------------------------------------------------- /src/components/parameters/order.topics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/order.topics.yaml -------------------------------------------------------------------------------- /src/components/parameters/order.users.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/order.users.yaml -------------------------------------------------------------------------------- /src/components/parameters/page.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/page.yaml -------------------------------------------------------------------------------- /src/components/parameters/per_page.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/per_page.yaml -------------------------------------------------------------------------------- /src/components/parameters/question_id.path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/question_id.path.yaml -------------------------------------------------------------------------------- /src/components/parameters/question_id.query.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/question_id.query.yaml -------------------------------------------------------------------------------- /src/components/parameters/question_ids.path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/question_ids.path.yaml -------------------------------------------------------------------------------- /src/components/parameters/report_targets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/report_targets.yaml -------------------------------------------------------------------------------- /src/components/parameters/reportable_id.path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/reportable_id.path.yaml -------------------------------------------------------------------------------- /src/components/parameters/reportable_type.path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/reportable_type.path.yaml -------------------------------------------------------------------------------- /src/components/parameters/reportable_type.query.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/reportable_type.query.yaml -------------------------------------------------------------------------------- /src/components/parameters/start_date.query.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/start_date.query.yaml -------------------------------------------------------------------------------- /src/components/parameters/token.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/token.yaml -------------------------------------------------------------------------------- /src/components/parameters/topic_id.path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/topic_id.path.yaml -------------------------------------------------------------------------------- /src/components/parameters/topic_id.query.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/topic_id.query.yaml -------------------------------------------------------------------------------- /src/components/parameters/topic_ids.path.yaml: -------------------------------------------------------------------------------- 1 | name: topic_ids 2 | in: path 3 | description: 多个用 `,` 分隔的话题ID,最多可提供 100 个 ID 4 | required: true 5 | schema: 6 | type: string 7 | example: 1,2,3 8 | -------------------------------------------------------------------------------- /src/components/parameters/topic_name.query.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/topic_name.query.yaml -------------------------------------------------------------------------------- /src/components/parameters/trashed.query.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/trashed.query.yaml -------------------------------------------------------------------------------- /src/components/parameters/user_id.path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/user_id.path.yaml -------------------------------------------------------------------------------- /src/components/parameters/user_id.query.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/user_id.query.yaml -------------------------------------------------------------------------------- /src/components/parameters/user_ids.path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/user_ids.path.yaml -------------------------------------------------------------------------------- /src/components/parameters/username.query.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/username.query.yaml -------------------------------------------------------------------------------- /src/components/parameters/vote_type.query.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/parameters/vote_type.query.yaml -------------------------------------------------------------------------------- /src/components/requestBodies/Answer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/requestBodies/Answer.yaml -------------------------------------------------------------------------------- /src/components/requestBodies/ArticleCreate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/requestBodies/ArticleCreate.yaml -------------------------------------------------------------------------------- /src/components/requestBodies/ArticleUpdate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/requestBodies/ArticleUpdate.yaml -------------------------------------------------------------------------------- /src/components/requestBodies/Comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/requestBodies/Comment.yaml -------------------------------------------------------------------------------- /src/components/requestBodies/Email.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/requestBodies/Email.yaml -------------------------------------------------------------------------------- /src/components/requestBodies/ImageUpdate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/requestBodies/ImageUpdate.yaml -------------------------------------------------------------------------------- /src/components/requestBodies/ImageUpload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/requestBodies/ImageUpload.yaml -------------------------------------------------------------------------------- /src/components/requestBodies/Option.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/requestBodies/Option.yaml -------------------------------------------------------------------------------- /src/components/requestBodies/QuestionCreate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/requestBodies/QuestionCreate.yaml -------------------------------------------------------------------------------- /src/components/requestBodies/QuestionUpdate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/requestBodies/QuestionUpdate.yaml -------------------------------------------------------------------------------- /src/components/requestBodies/Report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/requestBodies/Report.yaml -------------------------------------------------------------------------------- /src/components/requestBodies/TopicCreate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/requestBodies/TopicCreate.yaml -------------------------------------------------------------------------------- /src/components/requestBodies/TopicUpdate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/requestBodies/TopicUpdate.yaml -------------------------------------------------------------------------------- /src/components/requestBodies/User.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/requestBodies/User.yaml -------------------------------------------------------------------------------- /src/components/requestBodies/UserAvatar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/requestBodies/UserAvatar.yaml -------------------------------------------------------------------------------- /src/components/requestBodies/UserCover.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/requestBodies/UserCover.yaml -------------------------------------------------------------------------------- /src/components/requestBodies/UserLogin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/requestBodies/UserLogin.yaml -------------------------------------------------------------------------------- /src/components/requestBodies/UserPasswordReset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/requestBodies/UserPasswordReset.yaml -------------------------------------------------------------------------------- /src/components/requestBodies/UserRegister.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/requestBodies/UserRegister.yaml -------------------------------------------------------------------------------- /src/components/requestBodies/UserSendEmail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/requestBodies/UserSendEmail.yaml -------------------------------------------------------------------------------- /src/components/requestBodies/Vote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/requestBodies/Vote.yaml -------------------------------------------------------------------------------- /src/components/requestBodies/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/requestBodies/index.yaml -------------------------------------------------------------------------------- /src/components/responses/Answer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/Answer.yaml -------------------------------------------------------------------------------- /src/components/responses/Answers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/Answers.yaml -------------------------------------------------------------------------------- /src/components/responses/Article.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/Article.yaml -------------------------------------------------------------------------------- /src/components/responses/Articles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/Articles.yaml -------------------------------------------------------------------------------- /src/components/responses/Captcha.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/Captcha.yaml -------------------------------------------------------------------------------- /src/components/responses/Comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/Comment.yaml -------------------------------------------------------------------------------- /src/components/responses/Comments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/Comments.yaml -------------------------------------------------------------------------------- /src/components/responses/Email.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/Email.yaml -------------------------------------------------------------------------------- /src/components/responses/Empty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/Empty.yaml -------------------------------------------------------------------------------- /src/components/responses/Error.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/Error.yaml -------------------------------------------------------------------------------- /src/components/responses/FollowerCount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/FollowerCount.yaml -------------------------------------------------------------------------------- /src/components/responses/Image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/Image.yaml -------------------------------------------------------------------------------- /src/components/responses/Images.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/Images.yaml -------------------------------------------------------------------------------- /src/components/responses/Notification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/Notification.yaml -------------------------------------------------------------------------------- /src/components/responses/NotificationCount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/NotificationCount.yaml -------------------------------------------------------------------------------- /src/components/responses/Notifications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/Notifications.yaml -------------------------------------------------------------------------------- /src/components/responses/Option.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/Option.yaml -------------------------------------------------------------------------------- /src/components/responses/Question.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/Question.yaml -------------------------------------------------------------------------------- /src/components/responses/Questions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/Questions.yaml -------------------------------------------------------------------------------- /src/components/responses/Report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/Report.yaml -------------------------------------------------------------------------------- /src/components/responses/ReportGroups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/ReportGroups.yaml -------------------------------------------------------------------------------- /src/components/responses/Reports.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/Reports.yaml -------------------------------------------------------------------------------- /src/components/responses/Stats.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/Stats.yaml -------------------------------------------------------------------------------- /src/components/responses/Token.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/Token.yaml -------------------------------------------------------------------------------- /src/components/responses/Topic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/Topic.yaml -------------------------------------------------------------------------------- /src/components/responses/Topics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/Topics.yaml -------------------------------------------------------------------------------- /src/components/responses/User.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/User.yaml -------------------------------------------------------------------------------- /src/components/responses/UserAvatar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/UserAvatar.yaml -------------------------------------------------------------------------------- /src/components/responses/UserCover.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/UserCover.yaml -------------------------------------------------------------------------------- /src/components/responses/Users.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/Users.yaml -------------------------------------------------------------------------------- /src/components/responses/VoteCount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/VoteCount.yaml -------------------------------------------------------------------------------- /src/components/responses/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/responses/index.yaml -------------------------------------------------------------------------------- /src/components/schemas/Answer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/Answer.yaml -------------------------------------------------------------------------------- /src/components/schemas/Article.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/Article.yaml -------------------------------------------------------------------------------- /src/components/schemas/Captcha.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/Captcha.yaml -------------------------------------------------------------------------------- /src/components/schemas/CodeSuccess.yaml: -------------------------------------------------------------------------------- 1 | type: integer 2 | description: 无任何错误时,状态码为 0 3 | default: 0 4 | example: 0 5 | -------------------------------------------------------------------------------- /src/components/schemas/Comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/Comment.yaml -------------------------------------------------------------------------------- /src/components/schemas/Email.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/Email.yaml -------------------------------------------------------------------------------- /src/components/schemas/FollowerCount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/FollowerCount.yaml -------------------------------------------------------------------------------- /src/components/schemas/Image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/Image.yaml -------------------------------------------------------------------------------- /src/components/schemas/ImageUrls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/ImageUrls.yaml -------------------------------------------------------------------------------- /src/components/schemas/Notification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/Notification.yaml -------------------------------------------------------------------------------- /src/components/schemas/NotificationCount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/NotificationCount.yaml -------------------------------------------------------------------------------- /src/components/schemas/Option.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/Option.yaml -------------------------------------------------------------------------------- /src/components/schemas/Pagination.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/Pagination.yaml -------------------------------------------------------------------------------- /src/components/schemas/Question.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/Question.yaml -------------------------------------------------------------------------------- /src/components/schemas/Report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/Report.yaml -------------------------------------------------------------------------------- /src/components/schemas/ReportGroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/ReportGroup.yaml -------------------------------------------------------------------------------- /src/components/schemas/Stats.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/Stats.yaml -------------------------------------------------------------------------------- /src/components/schemas/StatsNewItems.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/StatsNewItems.yaml -------------------------------------------------------------------------------- /src/components/schemas/SystemInfo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/SystemInfo.yaml -------------------------------------------------------------------------------- /src/components/schemas/Token.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/Token.yaml -------------------------------------------------------------------------------- /src/components/schemas/Topic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/Topic.yaml -------------------------------------------------------------------------------- /src/components/schemas/TopicCover.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/TopicCover.yaml -------------------------------------------------------------------------------- /src/components/schemas/User.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/User.yaml -------------------------------------------------------------------------------- /src/components/schemas/UserAvatar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/UserAvatar.yaml -------------------------------------------------------------------------------- /src/components/schemas/UserCover.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/UserCover.yaml -------------------------------------------------------------------------------- /src/components/schemas/VoteCount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/VoteCount.yaml -------------------------------------------------------------------------------- /src/components/schemas/inRelationship/Answer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/inRelationship/Answer.yaml -------------------------------------------------------------------------------- /src/components/schemas/inRelationship/Article.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/inRelationship/Article.yaml -------------------------------------------------------------------------------- /src/components/schemas/inRelationship/Comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/inRelationship/Comment.yaml -------------------------------------------------------------------------------- /src/components/schemas/inRelationship/Question.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/inRelationship/Question.yaml -------------------------------------------------------------------------------- /src/components/schemas/inRelationship/Topic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/inRelationship/Topic.yaml -------------------------------------------------------------------------------- /src/components/schemas/inRelationship/Topics.yaml: -------------------------------------------------------------------------------- 1 | type: array 2 | items: 3 | $ref: '#/components/schemas/TopicInRelationship' 4 | -------------------------------------------------------------------------------- /src/components/schemas/inRelationship/User.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/inRelationship/User.yaml -------------------------------------------------------------------------------- /src/components/schemas/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/index.yaml -------------------------------------------------------------------------------- /src/components/schemas/relationships/Answer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/relationships/Answer.yaml -------------------------------------------------------------------------------- /src/components/schemas/relationships/Article.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/relationships/Article.yaml -------------------------------------------------------------------------------- /src/components/schemas/relationships/Comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/relationships/Comment.yaml -------------------------------------------------------------------------------- /src/components/schemas/relationships/Image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/relationships/Image.yaml -------------------------------------------------------------------------------- /src/components/schemas/relationships/Notification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/relationships/Notification.yaml -------------------------------------------------------------------------------- /src/components/schemas/relationships/Question.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/relationships/Question.yaml -------------------------------------------------------------------------------- /src/components/schemas/relationships/Report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/relationships/Report.yaml -------------------------------------------------------------------------------- /src/components/schemas/relationships/ReportGroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/relationships/ReportGroup.yaml -------------------------------------------------------------------------------- /src/components/schemas/relationships/Topic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/relationships/Topic.yaml -------------------------------------------------------------------------------- /src/components/schemas/relationships/User.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/relationships/User.yaml -------------------------------------------------------------------------------- /src/components/schemas/requestBody/Answer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/requestBody/Answer.yaml -------------------------------------------------------------------------------- /src/components/schemas/requestBody/ArticleCreate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/requestBody/ArticleCreate.yaml -------------------------------------------------------------------------------- /src/components/schemas/requestBody/ArticleUpdate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/requestBody/ArticleUpdate.yaml -------------------------------------------------------------------------------- /src/components/schemas/requestBody/Comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/requestBody/Comment.yaml -------------------------------------------------------------------------------- /src/components/schemas/requestBody/ImageUpdate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/requestBody/ImageUpdate.yaml -------------------------------------------------------------------------------- /src/components/schemas/requestBody/ImageUpload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/requestBody/ImageUpload.yaml -------------------------------------------------------------------------------- /src/components/schemas/requestBody/OptionUpdate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/requestBody/OptionUpdate.yaml -------------------------------------------------------------------------------- /src/components/schemas/requestBody/QuestionCreate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/requestBody/QuestionCreate.yaml -------------------------------------------------------------------------------- /src/components/schemas/requestBody/QuestionUpdate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/requestBody/QuestionUpdate.yaml -------------------------------------------------------------------------------- /src/components/schemas/requestBody/Report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/requestBody/Report.yaml -------------------------------------------------------------------------------- /src/components/schemas/requestBody/TopicCreate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/requestBody/TopicCreate.yaml -------------------------------------------------------------------------------- /src/components/schemas/requestBody/TopicUpdate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/requestBody/TopicUpdate.yaml -------------------------------------------------------------------------------- /src/components/schemas/requestBody/User.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/requestBody/User.yaml -------------------------------------------------------------------------------- /src/components/schemas/requestBody/UserAvatar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/requestBody/UserAvatar.yaml -------------------------------------------------------------------------------- /src/components/schemas/requestBody/UserCover.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/requestBody/UserCover.yaml -------------------------------------------------------------------------------- /src/components/schemas/requestBody/UserLogin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/requestBody/UserLogin.yaml -------------------------------------------------------------------------------- /src/components/schemas/requestBody/UserPasswordReset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/requestBody/UserPasswordReset.yaml -------------------------------------------------------------------------------- /src/components/schemas/requestBody/UserRegister.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/requestBody/UserRegister.yaml -------------------------------------------------------------------------------- /src/components/schemas/requestBody/UserSendEmail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/requestBody/UserSendEmail.yaml -------------------------------------------------------------------------------- /src/components/schemas/requestBody/Vote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/requestBody/Vote.yaml -------------------------------------------------------------------------------- /src/components/schemas/response/Answer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/response/Answer.yaml -------------------------------------------------------------------------------- /src/components/schemas/response/Answers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/response/Answers.yaml -------------------------------------------------------------------------------- /src/components/schemas/response/Article.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/response/Article.yaml -------------------------------------------------------------------------------- /src/components/schemas/response/Articles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/response/Articles.yaml -------------------------------------------------------------------------------- /src/components/schemas/response/Captcha.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/response/Captcha.yaml -------------------------------------------------------------------------------- /src/components/schemas/response/Comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/response/Comment.yaml -------------------------------------------------------------------------------- /src/components/schemas/response/Comments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/response/Comments.yaml -------------------------------------------------------------------------------- /src/components/schemas/response/Email.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/response/Email.yaml -------------------------------------------------------------------------------- /src/components/schemas/response/Empty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/response/Empty.yaml -------------------------------------------------------------------------------- /src/components/schemas/response/Error.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/response/Error.yaml -------------------------------------------------------------------------------- /src/components/schemas/response/FollowerCount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/response/FollowerCount.yaml -------------------------------------------------------------------------------- /src/components/schemas/response/Image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/response/Image.yaml -------------------------------------------------------------------------------- /src/components/schemas/response/Images.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/response/Images.yaml -------------------------------------------------------------------------------- /src/components/schemas/response/Notification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/response/Notification.yaml -------------------------------------------------------------------------------- /src/components/schemas/response/NotificationCount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/response/NotificationCount.yaml -------------------------------------------------------------------------------- /src/components/schemas/response/Notifications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/response/Notifications.yaml -------------------------------------------------------------------------------- /src/components/schemas/response/Option.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/response/Option.yaml -------------------------------------------------------------------------------- /src/components/schemas/response/Question.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/response/Question.yaml -------------------------------------------------------------------------------- /src/components/schemas/response/Questions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/response/Questions.yaml -------------------------------------------------------------------------------- /src/components/schemas/response/Report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/response/Report.yaml -------------------------------------------------------------------------------- /src/components/schemas/response/ReportGroups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/response/ReportGroups.yaml -------------------------------------------------------------------------------- /src/components/schemas/response/Reports.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/response/Reports.yaml -------------------------------------------------------------------------------- /src/components/schemas/response/Stats.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/response/Stats.yaml -------------------------------------------------------------------------------- /src/components/schemas/response/Token.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/response/Token.yaml -------------------------------------------------------------------------------- /src/components/schemas/response/Topic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/response/Topic.yaml -------------------------------------------------------------------------------- /src/components/schemas/response/Topics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/response/Topics.yaml -------------------------------------------------------------------------------- /src/components/schemas/response/User.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/response/User.yaml -------------------------------------------------------------------------------- /src/components/schemas/response/UserAvatar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/response/UserAvatar.yaml -------------------------------------------------------------------------------- /src/components/schemas/response/UserCover.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/response/UserCover.yaml -------------------------------------------------------------------------------- /src/components/schemas/response/Users.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/response/Users.yaml -------------------------------------------------------------------------------- /src/components/schemas/response/VoteCount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/components/schemas/response/VoteCount.yaml -------------------------------------------------------------------------------- /src/components/securitySchemes/index.yaml: -------------------------------------------------------------------------------- 1 | token: 2 | $ref: ./token.yaml 3 | -------------------------------------------------------------------------------- /src/components/securitySchemes/token.yaml: -------------------------------------------------------------------------------- 1 | type: apiKey 2 | name: token 3 | in: header 4 | -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/index.yaml -------------------------------------------------------------------------------- /src/info/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/info/index.yaml -------------------------------------------------------------------------------- /src/paths/answers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/answers.yaml -------------------------------------------------------------------------------- /src/paths/answers.{answer_ids}.trash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/answers.{answer_ids}.trash.yaml -------------------------------------------------------------------------------- /src/paths/answers.{answer_ids}.untrash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/answers.{answer_ids}.untrash.yaml -------------------------------------------------------------------------------- /src/paths/answers.{answer_ids}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/answers.{answer_ids}.yaml -------------------------------------------------------------------------------- /src/paths/answers.{answer_id}.comments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/answers.{answer_id}.comments.yaml -------------------------------------------------------------------------------- /src/paths/answers.{answer_id}.trash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/answers.{answer_id}.trash.yaml -------------------------------------------------------------------------------- /src/paths/answers.{answer_id}.untrash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/answers.{answer_id}.untrash.yaml -------------------------------------------------------------------------------- /src/paths/answers.{answer_id}.voters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/answers.{answer_id}.voters.yaml -------------------------------------------------------------------------------- /src/paths/answers.{answer_id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/answers.{answer_id}.yaml -------------------------------------------------------------------------------- /src/paths/articles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/articles.yaml -------------------------------------------------------------------------------- /src/paths/articles.{article_ids}.trash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/articles.{article_ids}.trash.yaml -------------------------------------------------------------------------------- /src/paths/articles.{article_ids}.untrash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/articles.{article_ids}.untrash.yaml -------------------------------------------------------------------------------- /src/paths/articles.{article_ids}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/articles.{article_ids}.yaml -------------------------------------------------------------------------------- /src/paths/articles.{article_id}.comments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/articles.{article_id}.comments.yaml -------------------------------------------------------------------------------- /src/paths/articles.{article_id}.followers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/articles.{article_id}.followers.yaml -------------------------------------------------------------------------------- /src/paths/articles.{article_id}.trash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/articles.{article_id}.trash.yaml -------------------------------------------------------------------------------- /src/paths/articles.{article_id}.untrash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/articles.{article_id}.untrash.yaml -------------------------------------------------------------------------------- /src/paths/articles.{article_id}.voters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/articles.{article_id}.voters.yaml -------------------------------------------------------------------------------- /src/paths/articles.{article_id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/articles.{article_id}.yaml -------------------------------------------------------------------------------- /src/paths/captchas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/captchas.yaml -------------------------------------------------------------------------------- /src/paths/comments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/comments.yaml -------------------------------------------------------------------------------- /src/paths/comments.{comment_ids}.trash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/comments.{comment_ids}.trash.yaml -------------------------------------------------------------------------------- /src/paths/comments.{comment_ids}.untrash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/comments.{comment_ids}.untrash.yaml -------------------------------------------------------------------------------- /src/paths/comments.{comment_ids}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/comments.{comment_ids}.yaml -------------------------------------------------------------------------------- /src/paths/comments.{comment_id}.replies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/comments.{comment_id}.replies.yaml -------------------------------------------------------------------------------- /src/paths/comments.{comment_id}.trash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/comments.{comment_id}.trash.yaml -------------------------------------------------------------------------------- /src/paths/comments.{comment_id}.untrash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/comments.{comment_id}.untrash.yaml -------------------------------------------------------------------------------- /src/paths/comments.{comment_id}.voters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/comments.{comment_id}.voters.yaml -------------------------------------------------------------------------------- /src/paths/comments.{comment_id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/comments.{comment_id}.yaml -------------------------------------------------------------------------------- /src/paths/emails.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/emails.yaml -------------------------------------------------------------------------------- /src/paths/images.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/images.yaml -------------------------------------------------------------------------------- /src/paths/images.{keys}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/images.{keys}.yaml -------------------------------------------------------------------------------- /src/paths/images.{key}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/images.{key}.yaml -------------------------------------------------------------------------------- /src/paths/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/index.yaml -------------------------------------------------------------------------------- /src/paths/notifications.count.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/notifications.count.yaml -------------------------------------------------------------------------------- /src/paths/notifications.read.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/notifications.read.yaml -------------------------------------------------------------------------------- /src/paths/notifications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/notifications.yaml -------------------------------------------------------------------------------- /src/paths/notifications.{notification_ids}.read.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/notifications.{notification_ids}.read.yaml -------------------------------------------------------------------------------- /src/paths/notifications.{notification_ids}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/notifications.{notification_ids}.yaml -------------------------------------------------------------------------------- /src/paths/notifications.{notification_id}.read.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/notifications.{notification_id}.read.yaml -------------------------------------------------------------------------------- /src/paths/notifications.{notification_id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/notifications.{notification_id}.yaml -------------------------------------------------------------------------------- /src/paths/options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/options.yaml -------------------------------------------------------------------------------- /src/paths/questions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/questions.yaml -------------------------------------------------------------------------------- /src/paths/questions.{question_ids}.trash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/questions.{question_ids}.trash.yaml -------------------------------------------------------------------------------- /src/paths/questions.{question_ids}.untrash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/questions.{question_ids}.untrash.yaml -------------------------------------------------------------------------------- /src/paths/questions.{question_ids}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/questions.{question_ids}.yaml -------------------------------------------------------------------------------- /src/paths/questions.{question_id}.answers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/questions.{question_id}.answers.yaml -------------------------------------------------------------------------------- /src/paths/questions.{question_id}.comments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/questions.{question_id}.comments.yaml -------------------------------------------------------------------------------- /src/paths/questions.{question_id}.followers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/questions.{question_id}.followers.yaml -------------------------------------------------------------------------------- /src/paths/questions.{question_id}.trash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/questions.{question_id}.trash.yaml -------------------------------------------------------------------------------- /src/paths/questions.{question_id}.untrash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/questions.{question_id}.untrash.yaml -------------------------------------------------------------------------------- /src/paths/questions.{question_id}.voters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/questions.{question_id}.voters.yaml -------------------------------------------------------------------------------- /src/paths/questions.{question_id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/questions.{question_id}.yaml -------------------------------------------------------------------------------- /src/paths/reports.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/reports.yaml -------------------------------------------------------------------------------- /src/paths/reports.{report_targets}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/reports.{report_targets}.yaml -------------------------------------------------------------------------------- /src/paths/reports.{reportable_type}-{reportable_id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/reports.{reportable_type}-{reportable_id}.yaml -------------------------------------------------------------------------------- /src/paths/stats.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/stats.yaml -------------------------------------------------------------------------------- /src/paths/tokens.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/tokens.yaml -------------------------------------------------------------------------------- /src/paths/topics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/topics.yaml -------------------------------------------------------------------------------- /src/paths/topics.{topic_ids}.trash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/topics.{topic_ids}.trash.yaml -------------------------------------------------------------------------------- /src/paths/topics.{topic_ids}.untrash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/topics.{topic_ids}.untrash.yaml -------------------------------------------------------------------------------- /src/paths/topics.{topic_ids}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/topics.{topic_ids}.yaml -------------------------------------------------------------------------------- /src/paths/topics.{topic_id}.articles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/topics.{topic_id}.articles.yaml -------------------------------------------------------------------------------- /src/paths/topics.{topic_id}.followers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/topics.{topic_id}.followers.yaml -------------------------------------------------------------------------------- /src/paths/topics.{topic_id}.questions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/topics.{topic_id}.questions.yaml -------------------------------------------------------------------------------- /src/paths/topics.{topic_id}.trash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/topics.{topic_id}.trash.yaml -------------------------------------------------------------------------------- /src/paths/topics.{topic_id}.untrash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/topics.{topic_id}.untrash.yaml -------------------------------------------------------------------------------- /src/paths/topics.{topic_id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/topics.{topic_id}.yaml -------------------------------------------------------------------------------- /src/paths/user.answers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/user.answers.yaml -------------------------------------------------------------------------------- /src/paths/user.articles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/user.articles.yaml -------------------------------------------------------------------------------- /src/paths/user.avatar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/user.avatar.yaml -------------------------------------------------------------------------------- /src/paths/user.comments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/user.comments.yaml -------------------------------------------------------------------------------- /src/paths/user.cover.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/user.cover.yaml -------------------------------------------------------------------------------- /src/paths/user.followees.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/user.followees.yaml -------------------------------------------------------------------------------- /src/paths/user.followers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/user.followers.yaml -------------------------------------------------------------------------------- /src/paths/user.following_articles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/user.following_articles.yaml -------------------------------------------------------------------------------- /src/paths/user.following_questions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/user.following_questions.yaml -------------------------------------------------------------------------------- /src/paths/user.following_topics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/user.following_topics.yaml -------------------------------------------------------------------------------- /src/paths/user.password.email.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/user.password.email.yaml -------------------------------------------------------------------------------- /src/paths/user.password.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/user.password.yaml -------------------------------------------------------------------------------- /src/paths/user.questions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/user.questions.yaml -------------------------------------------------------------------------------- /src/paths/user.register.email.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/user.register.email.yaml -------------------------------------------------------------------------------- /src/paths/user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/user.yaml -------------------------------------------------------------------------------- /src/paths/users.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/users.yaml -------------------------------------------------------------------------------- /src/paths/users.{user_ids}.disable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/users.{user_ids}.disable.yaml -------------------------------------------------------------------------------- /src/paths/users.{user_ids}.enable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/users.{user_ids}.enable.yaml -------------------------------------------------------------------------------- /src/paths/users.{user_id}.answers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/users.{user_id}.answers.yaml -------------------------------------------------------------------------------- /src/paths/users.{user_id}.articles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/users.{user_id}.articles.yaml -------------------------------------------------------------------------------- /src/paths/users.{user_id}.avatar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/users.{user_id}.avatar.yaml -------------------------------------------------------------------------------- /src/paths/users.{user_id}.comments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/users.{user_id}.comments.yaml -------------------------------------------------------------------------------- /src/paths/users.{user_id}.cover.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/users.{user_id}.cover.yaml -------------------------------------------------------------------------------- /src/paths/users.{user_id}.disable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/users.{user_id}.disable.yaml -------------------------------------------------------------------------------- /src/paths/users.{user_id}.enable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/users.{user_id}.enable.yaml -------------------------------------------------------------------------------- /src/paths/users.{user_id}.followees.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/users.{user_id}.followees.yaml -------------------------------------------------------------------------------- /src/paths/users.{user_id}.followers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/users.{user_id}.followers.yaml -------------------------------------------------------------------------------- /src/paths/users.{user_id}.following_articles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/users.{user_id}.following_articles.yaml -------------------------------------------------------------------------------- /src/paths/users.{user_id}.following_questions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/users.{user_id}.following_questions.yaml -------------------------------------------------------------------------------- /src/paths/users.{user_id}.following_topics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/users.{user_id}.following_topics.yaml -------------------------------------------------------------------------------- /src/paths/users.{user_id}.questions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/users.{user_id}.questions.yaml -------------------------------------------------------------------------------- /src/paths/users.{user_id}.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/paths/users.{user_id}.yaml -------------------------------------------------------------------------------- /src/servers/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/servers/index.yaml -------------------------------------------------------------------------------- /src/tags/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdhxiong/mdclub-openapi/HEAD/src/tags/index.yaml --------------------------------------------------------------------------------