merge: sync origin/main into dev
This commit is contained in:
commit
9f7cfb04fa
2 changed files with 3 additions and 2 deletions
|
|
@ -26,7 +26,7 @@
|
||||||
<sub>100% free, open source. No API keys. No configuration. Runs entirely locally. Not just coding agents.</sub>
|
<sub>100% free, open source. No API keys. No configuration. Runs entirely locally. Not just coding agents.</sub>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<img width="1902" height="1350" alt="image" src="https://github.com/user-attachments/assets/9c8917e0-5847-4fa9-a495-0aa7b75fb939" />
|
<img width="1500" height="1065" alt="demo" src="https://github.com/user-attachments/assets/be19cfcb-93ff-403a-9a1e-8ff1a803c55e" />
|
||||||
|
|
||||||
|
|
||||||
<table>
|
<table>
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,8 @@ export class TeamInboxReader {
|
||||||
|
|
||||||
return entries
|
return entries
|
||||||
.filter((name) => name.endsWith('.json') && !name.startsWith('.'))
|
.filter((name) => name.endsWith('.json') && !name.startsWith('.'))
|
||||||
.map((name) => name.replace(/\.json$/, ''));
|
.map((name) => name.replace(/\.json$/, ''))
|
||||||
|
.filter((name) => name !== '*');
|
||||||
}
|
}
|
||||||
|
|
||||||
async getMessagesFor(teamName: string, member: string): Promise<InboxMessage[]> {
|
async getMessagesFor(teamName: string, member: string): Promise<InboxMessage[]> {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue