Skip to content

Commit

Permalink
Merge pull request #245 from chesslablab/issue/244-Delete-the-inbox-c…
Browse files Browse the repository at this point in the history
…ommand

Deleted the /inbox command
  • Loading branch information
programarivm authored Jan 22, 2024
2 parents 30a8edb + 6f1fd67 commit 060e026
Show file tree
Hide file tree
Showing 10 changed files with 1 addition and 340 deletions.
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@
/ssl/*.crt
/ssl/*.key

/storage/inbox/cache
/storage/inbox/data
/storage/inbox/*.sdb
/storage/*.log

/.phpunit.result.cache
Expand Down
18 changes: 0 additions & 18 deletions bash/inbox.sh

This file was deleted.

1 change: 0 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
"firebase/php-jwt": "^6.8",
"vlucas/phpdotenv": "^5.3",
"monolog/monolog": "^2.3",
"rakibtg/sleekdb": "^2.15",
"react/async": "^4.1.0"
},
"require-dev": {
Expand Down
86 changes: 0 additions & 86 deletions docs/inbox.md

This file was deleted.

1 change: 0 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,3 @@ Dependencies required:
- PHP-JWT for encoding and decoding JSON Web Tokens (JWT).
- PHP dotenv for loading environment variables.
- Monolog for logging commands.
- SleekDB for temporarily storing the correspondence chess inboxes.
1 change: 0 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ nav:
- /leave: leave.md
- /rematch: rematch.md
- /restart: restart.md
- /inbox: inbox.md
- /stockfish: stockfish.md
- /stockfish_eval: stockfish-eval.md
- /online_games: online-games.md
Expand Down
2 changes: 0 additions & 2 deletions src/Command/CommandContainer.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
use ChessServer\Command\AcceptPlayRequestCommand;
use ChessServer\Command\DrawCommand;
use ChessServer\Command\HeuristicsCommand;
use ChessServer\Command\InboxCommand;
use ChessServer\Command\LeaveCommand;
use ChessServer\Command\LegalCommand;
use ChessServer\Command\OnlineGamesCommand;
Expand All @@ -31,7 +30,6 @@ public function __construct()
$this->obj->attach(new AcceptPlayRequestCommand());
$this->obj->attach(new DrawCommand());
$this->obj->attach(new HeuristicsCommand());
$this->obj->attach(new InboxCommand());
$this->obj->attach(new LeaveCommand());
$this->obj->attach(new LegalCommand());
$this->obj->attach(new OnlineGamesCommand());
Expand Down
207 changes: 0 additions & 207 deletions src/Command/InboxCommand.php

This file was deleted.

Loading

0 comments on commit 060e026

Please sign in to comment.