Meta: Updated issue template labels, fixed minor issues

This commit is contained in:
Dan Brown
2026-05-05 20:35:45 +01:00
parent 3ddfa9b948
commit 1532a99d4e
7 changed files with 7 additions and 8 deletions

View File

@@ -1,6 +1,6 @@
name: New API Endpoint or API Ability
description: Request a new endpoint or API feature be added
labels: [":nut_and_bolt: API Request"]
labels: ["Type/API Request"]
body:
- type: textarea
id: feature

View File

@@ -1,6 +1,6 @@
name: Bug Report
description: Create a report to help us fix bugs & issues in existing supported functionality
labels: [":bug: Bug"]
labels: ["Type/Bug Report"]
body:
- type: markdown
attributes:

View File

@@ -1,6 +1,6 @@
name: Feature Request
description: Request a new feature or idea to be added to BookStack
labels: [":hammer: Feature Request"]
labels: ["Type/Feature Request"]
body:
- type: textarea
id: description

View File

@@ -1,6 +1,6 @@
name: Language Request
description: Request a new language to be added to Crowdin for you to translate
labels: [":earth_africa: Translations"]
labels: ["Focus: Translations"]
assignees:
- ssddanbrown
body:

View File

@@ -1,6 +1,6 @@
name: Support Request
description: Request support for a specific problem you have not been able to solve yourself
labels: [":dog2: Support"]
labels: ["Type/Support"]
body:
- type: checkboxes
id: useddocs

View File

@@ -29,7 +29,7 @@ A platform for storing and organising information and documentation. Details for
BookStack is an opinionated documentation platform that provides a pleasant and simple out-of-the-box experience. New users to an instance should find the experience intuitive and only basic word-processing skills should be required to get involved in creating content on BookStack. The platform should provide advanced power features to those that desire it, but they should not interfere with the core simple user experience.
BookStack is not designed as an extensible platform to be used for purposes that differ to the statement above.
BookStack is not designed as an extensible platform to be used for purposes that differ from the statement above.
In regard to development philosophy, BookStack has a relaxed, open & positive approach. We aim to slowly yet continuously evolve the platform while providing a stable & easy upgrade path.

View File

@@ -1,12 +1,11 @@
<?php
namespace Api;
namespace Tests\Api;
use BookStack\Activity\Models\Tag;
use BookStack\Entities\Models\Book;
use BookStack\Entities\Models\Chapter;
use BookStack\Entities\Models\Page;
use Tests\Api\TestsApi;
use Tests\TestCase;
class TagsApiTest extends TestCase