diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000..f010b675 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,30 @@ +--- +name: Bug report +about: Report a broken functionality. +title: '' +labels: bug +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**TYPO3 version and TYPO3 Headless version** + Please provide the exact version of TYPO3 and TYPO3 Headless + +**Additional context** +Add any other information related to the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 00000000..bbcbbe7d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: '' +assignees: '' + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. diff --git a/Configuration/Services.php b/Configuration/Services.php index b9766e95..2a908291 100644 --- a/Configuration/Services.php +++ b/Configuration/Services.php @@ -17,6 +17,7 @@ use FriendsOfTYPO3\Headless\DataProcessing\DatabaseQueryProcessor; use FriendsOfTYPO3\Headless\DataProcessing\FilesProcessor; use FriendsOfTYPO3\Headless\DataProcessing\FlexFormProcessor; +use FriendsOfTYPO3\Headless\DataProcessing\GalleryProcessor; use FriendsOfTYPO3\Headless\DataProcessing\MenuProcessor; use FriendsOfTYPO3\Headless\DataProcessing\RootSitesProcessor; use FriendsOfTYPO3\Headless\Event\Listener\AfterCacheableContentIsGeneratedListener; @@ -32,7 +33,6 @@ use TYPO3\CMS\Core\Configuration\Features; use TYPO3\CMS\Core\Utility\GeneralUtility; use TYPO3\CMS\Form\Controller\FormFrontendController; -use TYPO3\CMS\Frontend\DataProcessing\GalleryProcessor; use TYPO3\CMS\FrontendLogin\Controller\LoginController; use function Symfony\Component\DependencyInjection\Loader\Configurator\service; diff --git a/README.md b/README.md index cb2f90a4..99c9237f 100644 --- a/README.md +++ b/README.md @@ -70,6 +70,10 @@ Then, you should include extension typoscript template, and you are ready to go. ## Documentation [Extension documentation](https://docs.typo3.org/p/friendsoftypo3/headless/master/en-us/Index.html) + +## Contributing +![Alt](https://repobeats.axiom.co/api/embed/197db91cad9195bb15a06c91fda5a215bff26cba.svg) + ## JSON Content Object In headless extension we implemented new JSON Content Object, which allows you to specify what fields you want to output, and how they will look. First, let's take a look at simple example ```