refactor : rename Inventory_frontend to frontend in docs

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Matthieu
2026-04-01 14:20:19 +02:00
parent 73b2cf300d
commit be859e57db
17 changed files with 227 additions and 227 deletions

View File

@@ -574,7 +574,7 @@ git commit -m "test(comments) : add tests for comment creation with file attachm
### Task 6: Frontend — update useComments composable
**Files:**
- Modify: `Inventory_frontend/app/composables/useComments.ts`
- Modify: `frontend/app/composables/useComments.ts`
- [ ] **Step 1: Add document type to Comment interface**
@@ -661,12 +661,12 @@ const createComment = async (
- [ ] **Step 3: Run lint + typecheck**
Run: `cd Inventory_frontend && npm run lint:fix && npx nuxi typecheck`
Run: `cd frontend && npm run lint:fix && npx nuxi typecheck`
- [ ] **Step 4: Commit (in frontend submodule)**
```bash
cd Inventory_frontend
cd frontend
git add app/composables/useComments.ts
git commit -m "feat(comments) : support file attachments in createComment"
```
@@ -676,7 +676,7 @@ git commit -m "feat(comments) : support file attachments in createComment"
### Task 7: Frontend — update CommentSection.vue
**Files:**
- Modify: `Inventory_frontend/app/components/CommentSection.vue`
- Modify: `frontend/app/components/CommentSection.vue`
- [ ] **Step 1: Add file input and file list display to the template**
@@ -810,12 +810,12 @@ const handleSubmit = async () => {
- [ ] **Step 3: Run lint + typecheck**
Run: `cd Inventory_frontend && npm run lint:fix && npx nuxi typecheck`
Run: `cd frontend && npm run lint:fix && npx nuxi typecheck`
- [ ] **Step 4: Commit (in frontend submodule)**
```bash
cd Inventory_frontend
cd frontend
git add app/components/CommentSection.vue
git commit -m "feat(comments) : add file attachment UI to CommentSection"
```
@@ -848,7 +848,7 @@ git commit -m "feat(documents) : add comment ExistsFilter"
- [ ] **Step 4: Update submodule pointer**
```bash
git add Inventory_frontend
git add frontend
git commit -m "chore(submodule) : update frontend pointer (comment documents feature)"
```