Skip to content

feat/kick out - #219

Closed
GaoNeng-wWw wants to merge 1 commit into
opentiny:refactor/next-nest-js-backendfrom
GaoNeng-wWw:feat/kick-out
Closed

feat/kick out#219
GaoNeng-wWw wants to merge 1 commit into
opentiny:refactor/next-nest-js-backendfrom
GaoNeng-wWw:feat/kick-out

Conversation

@GaoNeng-wWw

Copy link
Copy Markdown
Collaborator

@coderabbitai

coderabbitai Bot commented Jul 19, 2026

Copy link
Copy Markdown

Important

Review skipped

Too many files!

This PR contains 205 files, which is 105 over the limit of 100.

To get a review, narrow the scope:
• coderabbit review --type committed # exclude uncommitted changes
• coderabbit review --dir # limit to a subdirectory
• coderabbit review --base # compare against a closer base

Upgrade to a paid plan to raise the limit.

⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 88bc434b-6467-4b84-9fc5-304d4ca3da1e

📥 Commits

Reviewing files that changed from the base of the PR and between 802e307 and 0d7c9da.

⛔ Files ignored due to path filters (3)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
  • template/nest-next/libs/shared/src/.generate/i18n.generated.ts is excluded by !**/*.generated.*
  • template/nest-next/src/.generate/i18n.generated.ts is excluded by !**/*.generated.*
📒 Files selected for processing (205)
  • pnpm-workspace.yaml
  • template/nest-next/.gitignore
  • template/nest-next/.prettierrc
  • template/nest-next/README.md
  • template/nest-next/configs/config.example.json
  • template/nest-next/configs/config.schema.json
  • template/nest-next/eslint.config.mjs
  • template/nest-next/global.d.ts
  • template/nest-next/libs/configure/src/configure.module.ts
  • template/nest-next/libs/configure/src/configure.service.ts
  • template/nest-next/libs/configure/src/configure/auth.ts
  • template/nest-next/libs/configure/src/configure/configure.ts
  • template/nest-next/libs/configure/src/configure/database.ts
  • template/nest-next/libs/configure/src/configure/feature.ts
  • template/nest-next/libs/configure/src/configure/index.ts
  • template/nest-next/libs/configure/src/configure/redis.ts
  • template/nest-next/libs/configure/src/configure/swagger.ts
  • template/nest-next/libs/configure/src/index.ts
  • template/nest-next/libs/configure/src/loader.ts
  • template/nest-next/libs/configure/tsconfig.lib.json
  • template/nest-next/libs/shared/src/condition.dto.ts
  • template/nest-next/libs/shared/src/constant.ts
  • template/nest-next/libs/shared/src/decorator/index.ts
  • template/nest-next/libs/shared/src/decorator/permission.decorator.ts
  • template/nest-next/libs/shared/src/decorator/reject.decorator.ts
  • template/nest-next/libs/shared/src/error.base.ts
  • template/nest-next/libs/shared/src/global-exception.filter.ts
  • template/nest-next/libs/shared/src/guard/index.ts
  • template/nest-next/libs/shared/src/guard/reject.guard.ts
  • template/nest-next/libs/shared/src/index.ts
  • template/nest-next/libs/shared/src/md5.ts
  • template/nest-next/libs/shared/src/pagination.ts
  • template/nest-next/libs/shared/tsconfig.lib.json
  • template/nest-next/lua/issue-token.lua
  • template/nest-next/lua/refresh-token.lua
  • template/nest-next/lua/revoke-all-session.lua
  • template/nest-next/lua/revoke-session.lua
  • template/nest-next/mikro-orm.config.ts
  • template/nest-next/nest-cli.json
  • template/nest-next/package.json
  • template/nest-next/seeder/database-seeder.ts
  • template/nest-next/seeder/menu-seeder.ts
  • template/nest-next/seeder/permission-seeder.ts
  • template/nest-next/seeder/role-seeder.ts
  • template/nest-next/seeder/user-seeder.ts
  • template/nest-next/seeder/utils/log.ts
  • template/nest-next/src/app.module.ts
  • template/nest-next/src/auth/api-token.service.ts
  • template/nest-next/src/auth/auth.controller.ts
  • template/nest-next/src/auth/auth.guard.ts
  • template/nest-next/src/auth/auth.module.ts
  • template/nest-next/src/auth/auth.service.ts
  • template/nest-next/src/auth/commands/index.ts
  • template/nest-next/src/auth/commands/issue-api-token.command.ts
  • template/nest-next/src/auth/commands/issue-token.command.ts
  • template/nest-next/src/auth/commands/refresh-token.command.ts
  • template/nest-next/src/auth/commands/revoke-all-user-session.command.ts
  • template/nest-next/src/auth/commands/revoke-api-token.command.ts
  • template/nest-next/src/auth/commands/revoke-token.command.ts
  • template/nest-next/src/auth/deocrators/index.ts
  • template/nest-next/src/auth/deocrators/public.decorator.ts
  • template/nest-next/src/auth/deocrators/token-payload.decorator.ts
  • template/nest-next/src/auth/dto/create-api-token.dto.ts
  • template/nest-next/src/auth/dto/index.ts
  • template/nest-next/src/auth/dto/login-in.dto.ts
  • template/nest-next/src/auth/dto/logout-auth.dto.ts
  • template/nest-next/src/auth/dto/refresh-token.dto.ts
  • template/nest-next/src/auth/dto/revoke-api-token.dto.ts
  • template/nest-next/src/auth/entity/index.ts
  • template/nest-next/src/auth/entity/token.entity.ts
  • template/nest-next/src/auth/errors/index.ts
  • template/nest-next/src/auth/errors/invalid-token.error.ts
  • template/nest-next/src/auth/errors/session-expired.error.ts
  • template/nest-next/src/auth/errors/token-expired.error.ts
  • template/nest-next/src/auth/errors/user-not-found.error.ts
  • template/nest-next/src/auth/event-handler/index.ts
  • template/nest-next/src/auth/event-handler/kick-out-user.ts
  • template/nest-next/src/auth/index.ts
  • template/nest-next/src/auth/queries/find-user-for-authentication.query.ts
  • template/nest-next/src/auth/queries/get-all-api-token.query.ts
  • template/nest-next/src/auth/queries/get-api-token-detail.query.ts
  • template/nest-next/src/auth/queries/get-token-data.ts
  • template/nest-next/src/auth/queries/get-token.ts
  • template/nest-next/src/auth/queries/index.ts
  • template/nest-next/src/auth/repository/index.ts
  • template/nest-next/src/auth/repository/redis-session.repository.ts
  • template/nest-next/src/auth/repository/token.repository.ts
  • template/nest-next/src/i18n/enUS/exception.json
  • template/nest-next/src/i18n/enUS/validation.json
  • template/nest-next/src/i18n/zhCN/exception.json
  • template/nest-next/src/i18n/zhCN/validation.json
  • template/nest-next/src/main.ts
  • template/nest-next/src/menu/commands/create-menu.command.ts
  • template/nest-next/src/menu/commands/index.ts
  • template/nest-next/src/menu/commands/remove-menu.command.ts
  • template/nest-next/src/menu/commands/update-menu.command.ts
  • template/nest-next/src/menu/dto/create-menu.dto.ts
  • template/nest-next/src/menu/dto/index.ts
  • template/nest-next/src/menu/dto/menu-info.dto.ts
  • template/nest-next/src/menu/dto/update-menu.dto.ts
  • template/nest-next/src/menu/errors/index.ts
  • template/nest-next/src/menu/errors/menu-exists.ts
  • template/nest-next/src/menu/errors/menu-not-found.ts
  • template/nest-next/src/menu/events/index.ts
  • template/nest-next/src/menu/events/menu-removed.event.ts
  • template/nest-next/src/menu/index.ts
  • template/nest-next/src/menu/menu.controller.ts
  • template/nest-next/src/menu/menu.entity.ts
  • template/nest-next/src/menu/menu.module.ts
  • template/nest-next/src/menu/menu.service.ts
  • template/nest-next/src/menu/queries/find-all-menu.query.ts
  • template/nest-next/src/menu/queries/find-menu.query.ts
  • template/nest-next/src/menu/queries/index.ts
  • template/nest-next/src/menu/types/index.ts
  • template/nest-next/src/menu/types/tree-node.ts
  • template/nest-next/src/permission/commands/create-permission.command.ts
  • template/nest-next/src/permission/commands/index.ts
  • template/nest-next/src/permission/commands/remove-permission.command.ts
  • template/nest-next/src/permission/commands/update-permission.command.ts
  • template/nest-next/src/permission/dto/create-permission.dto.ts
  • template/nest-next/src/permission/dto/get-permissions.dto.ts
  • template/nest-next/src/permission/dto/remove-permission.dto.ts
  • template/nest-next/src/permission/dto/update-permission.dto.ts
  • template/nest-next/src/permission/errors/index.ts
  • template/nest-next/src/permission/errors/permission-not-found.error.ts
  • template/nest-next/src/permission/events/index.ts
  • template/nest-next/src/permission/events/permission-removed.event.ts
  • template/nest-next/src/permission/index.ts
  • template/nest-next/src/permission/permission.controller.ts
  • template/nest-next/src/permission/permission.entry.ts
  • template/nest-next/src/permission/permission.module.ts
  • template/nest-next/src/permission/permission.service.ts
  • template/nest-next/src/permission/queries/find-permission.query.ts
  • template/nest-next/src/permission/queries/get-all-permissions.query.ts
  • template/nest-next/src/permission/queries/index.ts
  • template/nest-next/src/role/assembler/find-all-role.ts
  • template/nest-next/src/role/assembler/find-role.ts
  • template/nest-next/src/role/assembler/get-all-detail.ts
  • template/nest-next/src/role/commands/create-role.command.ts
  • template/nest-next/src/role/commands/index.ts
  • template/nest-next/src/role/commands/remove-role.command.ts
  • template/nest-next/src/role/commands/unbind-menu.command.ts
  • template/nest-next/src/role/commands/unbind-permission.command.ts
  • template/nest-next/src/role/commands/update-role.command.ts
  • template/nest-next/src/role/dto/create-role.dto.ts
  • template/nest-next/src/role/dto/find-all-role.dto.ts
  • template/nest-next/src/role/dto/find-role.dto.ts
  • template/nest-next/src/role/dto/get-role-detail.dto.ts
  • template/nest-next/src/role/dto/role-info.ts
  • template/nest-next/src/role/dto/update-role.dto.ts
  • template/nest-next/src/role/errors/index.ts
  • template/nest-next/src/role/errors/role-exists.ts
  • template/nest-next/src/role/errors/role-not-found.ts
  • template/nest-next/src/role/event-handler/index.ts
  • template/nest-next/src/role/event-handler/on-menu-removed.ts
  • template/nest-next/src/role/event-handler/on-permission-removed.ts
  • template/nest-next/src/role/index.ts
  • template/nest-next/src/role/queries/find-all-role.query.ts
  • template/nest-next/src/role/queries/find-role-menu-id.query.ts
  • template/nest-next/src/role/queries/find-role-permission-id.query.ts
  • template/nest-next/src/role/queries/find-role.query.ts
  • template/nest-next/src/role/queries/get-role-total.query.ts
  • template/nest-next/src/role/queries/index.ts
  • template/nest-next/src/role/role.controller.ts
  • template/nest-next/src/role/role.entity.ts
  • template/nest-next/src/role/role.module.ts
  • template/nest-next/src/role/role.service.ts
  • template/nest-next/src/user/command/batch-remove-user.ts
  • template/nest-next/src/user/command/change-password.command.ts
  • template/nest-next/src/user/command/index.ts
  • template/nest-next/src/user/command/remove-user.command.ts
  • template/nest-next/src/user/command/update-user-info.command.ts
  • template/nest-next/src/user/command/update-user-password.command.ts
  • template/nest-next/src/user/command/user-create.command.ts
  • template/nest-next/src/user/dto/batch-remove-user.dto.ts
  • template/nest-next/src/user/dto/create-user.dto.ts
  • template/nest-next/src/user/dto/get-all-user.dto.ts
  • template/nest-next/src/user/dto/get-user-info.dto.ts
  • template/nest-next/src/user/dto/index.ts
  • template/nest-next/src/user/dto/update-pwd-admin.dto.ts
  • template/nest-next/src/user/dto/update-pwd-user.dto.ts
  • template/nest-next/src/user/dto/update-user.dto.ts
  • template/nest-next/src/user/error/index.ts
  • template/nest-next/src/user/error/password-incorrect.ts
  • template/nest-next/src/user/error/user-not-found.ts
  • template/nest-next/src/user/events/index.ts
  • template/nest-next/src/user/events/password-changed.event.ts
  • template/nest-next/src/user/events/user-created.event.ts
  • template/nest-next/src/user/events/user-removed.event.ts
  • template/nest-next/src/user/events/user-role-changed.event.ts
  • template/nest-next/src/user/index.ts
  • template/nest-next/src/user/query/get-all-user.query.ts
  • template/nest-next/src/user/query/get-user-info.query.ts
  • template/nest-next/src/user/query/index.ts
  • template/nest-next/src/user/user.controller.ts
  • template/nest-next/src/user/user.entity.ts
  • template/nest-next/src/user/user.module.ts
  • template/nest-next/src/user/user.service.ts
  • template/nest-next/src/user/utils/format-date-to-day.ts
  • template/nest-next/src/user/utils/index.ts
  • template/nest-next/test/jest-e2e.json
  • template/nest-next/test/permission.e2e-spec.ts
  • template/nest-next/test/utils/e2e-app.ts
  • template/nest-next/tsconfig.build.json
  • template/nest-next/tsconfig.json

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • Review on demand using usage pricing
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@GaoNeng-wWw
GaoNeng-wWw changed the base branch from dev to refactor/next-nest-js-backend July 19, 2026 06:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant