Youssouf ⚜️ commited on
Commit
35dd900
·
1 Parent(s): 75ba54e
__pycache__/app.cpython-314.pyc ADDED
Binary file (26.6 kB). View file
 
__pycache__/forms.cpython-314.pyc CHANGED
Binary files a/__pycache__/forms.cpython-314.pyc and b/__pycache__/forms.cpython-314.pyc differ
 
__pycache__/models.cpython-314.pyc CHANGED
Binary files a/__pycache__/models.cpython-314.pyc and b/__pycache__/models.cpython-314.pyc differ
 
__pycache__/tests.cpython-314-pytest-8.3.2.pyc ADDED
Binary file (5.6 kB). View file
 
app.py CHANGED
@@ -480,7 +480,7 @@ def delete_post(post_id):
480
  delete_thread_content(post)
481
  else:
482
  # It's a reply
483
- delete_post_file(post)
484
  db.session.delete(post)
485
 
486
  db.session.commit()
 
480
  delete_thread_content(post)
481
  else:
482
  # It's a reply
483
+ delete_post_files(post)
484
  db.session.delete(post)
485
 
486
  db.session.commit()
instance/ghostboard.db CHANGED
Binary files a/instance/ghostboard.db and b/instance/ghostboard.db differ
 
opencode.json ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "$schema": "https://opencode.ai/config.json",
3
+ "mcp": {
4
+ "context7": {
5
+ "type": "remote",
6
+ "url": "https://mcp.context7.com/mcp",
7
+ "headers": {
8
+ "CONTEXT7_API_KEY": "ctx7sk-7b0179e4-f420-4459-8eb8-da652aca9cb8"
9
+ },
10
+ "enabled": true
11
+ },
12
+ "sequential-thinking": {
13
+ "type": "local",
14
+ "command": [
15
+ "npx",
16
+ "-y",
17
+ "@modelcontextprotocol/server-sequential-thinking"
18
+ ],
19
+ "enabled": true
20
+ }
21
+ }
22
+ }