Fix missing CommandRepository statement
This commit is contained in:
parent
7f1a97184b
commit
1a87943f07
|
@ -3,6 +3,11 @@ This file is a running track of new features and fixes to each version of the pa
|
||||||
|
|
||||||
This project follows [Semantic Versioning](http://semver.org) guidelines.
|
This project follows [Semantic Versioning](http://semver.org) guidelines.
|
||||||
|
|
||||||
|
## v0.6.0-beta.2 (Courageous Carniadactylus)
|
||||||
|
### Fixed
|
||||||
|
* `[beta.1]` — Fixes task management ststem not running correctly.
|
||||||
|
* `[beta.1]` — Fixes API endpoint for command sending missing the required class definition.
|
||||||
|
|
||||||
## v0.6.0-beta.1 (Courageous Carniadactylus)
|
## v0.6.0-beta.1 (Courageous Carniadactylus)
|
||||||
### Fixed
|
### Fixed
|
||||||
* `[pre.7]` — Fixes bug with subuser checkbox display.
|
* `[pre.7]` — Fixes bug with subuser checkbox display.
|
||||||
|
|
|
@ -30,6 +30,7 @@ use Pterodactyl\Models\Server;
|
||||||
use Pterodactyl\Http\Controllers\Controller;
|
use Pterodactyl\Http\Controllers\Controller;
|
||||||
use Pterodactyl\Repositories\Daemon\PowerRepository;
|
use Pterodactyl\Repositories\Daemon\PowerRepository;
|
||||||
use Pterodactyl\Transformers\User\ServerTransformer;
|
use Pterodactyl\Transformers\User\ServerTransformer;
|
||||||
|
use Pterodactyl\Repositories\Daemon\CommandRepository;
|
||||||
|
|
||||||
class ServerController extends Controller
|
class ServerController extends Controller
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue