-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/0x-First-Prototype' into 6-trans…
…lation-endpoint # Conflicts: # config/services.yaml # src/Exception/NoRequestException.php
- Loading branch information
Showing
102 changed files
with
38,972 additions
and
170 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,36 @@ | ||
# License | ||
Copyright (C) Pimcore GmbH | ||
|
||
This software is available under following license: | ||
This software is available under two different licenses: | ||
* GNU General Public License version 3 (GPLv3) as Pimcore Community Edition | ||
* Pimcore Commercial License (PCL) | ||
|
||
The default Pimcore license, without a valid Pimcore Commercial License agreement, is the Open-Source GPLv3 license. | ||
|
||
## GNU General Public License version 3 (GPLv3) | ||
If you decide to choose the GPLv3 license, you must comply with the following terms: | ||
|
||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
|
||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
|
||
You should have received a copy of the GNU General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
## Pimcore Commercial License (PCL) | ||
Commercial and supported versions of the program - also known as | ||
Alternatively, commercial and supported versions of the program - also known as | ||
Commercial Distributions - must be used in accordance with the terms and conditions | ||
contained in a separate written agreement between you and Pimcore GmbH. | ||
For more information about the Pimcore Commercial License (PCL) please contact [email protected]. | ||
For more information about the Pimcore Commercial License (PCL) please contact [email protected]. | ||
|
||
|
||
|
||
Please see also (files in this directory): | ||
- [Licensing FAQ - license-faq.md](https://github.com/pimcore/pimcore/blob/master/license-faq.md) | ||
- [GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 - gpl-3.0.txt](gpl-3.0.txt) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
resources: | ||
Pimcore\Bundle\StudioApiBundle\Dto\Token\Create: | ||
shortName: Token-Create | ||
operations: | ||
ApiPlatform\Metadata\Post: | ||
processor: Pimcore\Bundle\StudioApiBundle\State\Token\Create\Processor | ||
output: Pimcore\Bundle\StudioApiBundle\Dto\Token\Output | ||
uriTemplate: '/token/create' | ||
openapiContext: | ||
summary: 'Creates and returns a token' | ||
|
||
normalizationContext: | ||
groups: [ 'token:read' ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
resources: | ||
Pimcore\Bundle\StudioApiBundle\Dto\Token\Refresh: | ||
shortName: Token-Refresh | ||
operations: | ||
ApiPlatform\Metadata\Post: | ||
processor: Pimcore\Bundle\StudioApiBundle\State\Token\Refresh\Processor | ||
output: Pimcore\Bundle\StudioApiBundle\Dto\Token\Output | ||
uriTemplate: '/token/refresh' | ||
openapiContext: | ||
summary: 'Refreshes an existing token' | ||
|
||
normalizationContext: | ||
groups: [ 'tokenrefresh:read' ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Pimcore\Bundle\StudioApiBundle\Dto\Token\Output: | ||
attributes: | ||
token: | ||
groups: ['token:read', 'tokenrefresh:read'] | ||
username: | ||
groups: [ 'token:read' , 'tokenrefresh:read'] | ||
lifetime: | ||
groups: ['token:read', 'tokenrefresh:read'] | ||
validUntil: | ||
groups: ['token:read', 'tokenrefresh:read'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.