mirror of
https://github.com/kuaifan/dootask.git
synced 2026-05-23 08:54:01 +00:00
- 群组:新增 web_socket_dialog_users.role(1=主、2=副),主可任命/罢免副群主,副可邀请/移出普通成员 - 项目:project_users.owner 扩展为 0/1/2(成员/主/副),主独占转让和删除,副共享日常管理;任务可见性、通知、分配等下游逻辑统一用「主+副」 - 部门:新增 user_department_owners 表存储副负责人;部门群同步副群主,赋予群管理员权限 - 转移用户时副身份不替补、降级为普通成员 - 配套 migration/backfill、API、前端 UI、i18n 词条与三项 Feature 测试 - .gitignore 忽略 .playwright-mcp/
67 lines
822 B
Plaintext
67 lines
822 B
Plaintext
# Dependencies
|
|
/node_modules
|
|
/vendor
|
|
|
|
# Build and temporary files
|
|
/build
|
|
/public/hot
|
|
/public/tmp
|
|
/tmp
|
|
|
|
# Uploads and user-generated content
|
|
/public/summary
|
|
/public/uploads/*
|
|
/public/.well-known
|
|
/public/.user.ini
|
|
|
|
# Storage and configuration
|
|
/config/LICENSE
|
|
/storage/*.key
|
|
|
|
# Environment and configuration
|
|
.env
|
|
vars.yaml
|
|
|
|
# IDE and editor files
|
|
.cursor/*
|
|
!.cursor/rules/
|
|
!.cursor/rules/**
|
|
.idea
|
|
.vscode
|
|
.windsurfrules
|
|
|
|
# Development tools
|
|
.vagrant
|
|
Homestead.json
|
|
Homestead.yaml
|
|
|
|
# Development file
|
|
/index.html
|
|
|
|
# Testing
|
|
.phpunit.result.cache
|
|
test.*
|
|
|
|
# Logs and debug files
|
|
npm-debug.log
|
|
yarn-error.log
|
|
|
|
# Lock files
|
|
dootask.lock
|
|
package-lock.json
|
|
|
|
# Laravel/Swoole specific
|
|
laravels-timer-process.pid
|
|
laravels.conf
|
|
laravels.pid
|
|
|
|
# System files
|
|
._*
|
|
.DS_Store
|
|
|
|
# Documentation
|
|
README_LOCAL.md
|
|
|
|
# playwright
|
|
.playwright-mcp/
|