BookStack/tests/Activity/CommentsApiTest.php
Dan Brown cbf27d70c8
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
API: Added comment CUD endpoints, drafted tests
Move some checks and made some tweaks to the repo to support consistency
between API and UI.
2025-10-23 10:21:33 +01:00

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
}
}