feat: persist support tickets for Codex worklist

This commit is contained in:
alexpolo1
2026-08-13 14:29:15 +02:00
parent 340d15bf78
commit c6ca27dd22
33 changed files with 411 additions and 73 deletions

View File

@@ -58,7 +58,7 @@ Need to analyze each method and categorize:
#### Configuration
- Line 12: `this.apiBaseUrl = 'https://v2.api.ordrestyring.dk'`
- Line 11: `this.apiToken = process.env.ORDRESTYRING_API_TOKEN || 'cRD7xfeoiGh1OhzV'`
- Line 11: `this.apiToken = process.env.ORDRESTYRING_API_TOKEN || '<ORDRESTYRING_API_TOKEN>'`
#### Purpose
- Data synchronization between systems
@@ -401,7 +401,7 @@ axios.get(`https://v2.api.ordrestyring.dk/planned-time?time_start-min=${start}..
### Current Token
```javascript
const apiToken = process.env.ORDRESTYRING_API_TOKEN || 'cRD7xfeoiGh1OhzV';
const apiToken = process.env.ORDRESTYRING_API_TOKEN || '<ORDRESTYRING_API_TOKEN>';
```
### REST v2 Auth (Current)