mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-10-26 11:11:56 +00:00
Some checks are pending
analyse-php / build (push) Waiting to run
lint-php / build (push) Waiting to run
test-migrations / build (8.2) (push) Waiting to run
test-migrations / build (8.3) (push) Waiting to run
test-migrations / build (8.4) (push) Waiting to run
test-php / build (8.2) (push) Waiting to run
test-php / build (8.3) (push) Waiting to run
test-php / build (8.4) (push) Waiting to run
Move some checks and made some tweaks to the repo to support consistency between API and UI.
44 lines
601 B
PHP
44 lines
601 B
PHP
<?php
|
|
|
|
namespace Activity;
|
|
|
|
use BookStack\Activity\ActivityType;
|
|
use BookStack\Facades\Activity;
|
|
use Tests\Api\TestsApi;
|
|
use Tests\TestCase;
|
|
|
|
class CommentsApiTest extends TestCase
|
|
{
|
|
use TestsApi;
|
|
|
|
public function test_endpoint_permission_controls()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
public function test_index()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
public function test_create()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
public function test_read()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
public function test_update()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
public function test_destroy()
|
|
{
|
|
// TODO
|
|
}
|
|
}
|