fix api doc (teams) (#2773)

This commit is contained in:
Kevin Papst
2021-09-17 14:31:37 +02:00
committed by GitHub
parent 063753b569
commit fa6af3d148
2 changed files with 2 additions and 3 deletions

View File

@@ -35,7 +35,6 @@ nelmio_api_doc:
- { alias: UserEntity, type: App\Entity\User, groups: [Default, Entity, User, User_Entity] }
- { alias: UserCollection, type: App\Entity\User, groups: [Default, Collection, User] }
- { alias: TeamEditForm, type: App\Form\API\TeamApiEditForm, groups: [Default, Entity, Team, Team_Entity] }
- { alias: TeamEntity, type: App\Entity\Team, groups: [Default, Entity, Team, Team_Entity] }
- { alias: Team, type: App\Entity\Team, groups: [Default, Entity, Team, Team_Entity] }
- { alias: TeamCollection, type: App\Entity\Team, groups: [Default, Collection, Team] }
- { alias: TeamMember, type: App\Entity\TeamMember, groups: [Team_Entity] }

View File

@@ -17,11 +17,11 @@ class Constants
/**
* The current release version
*/
public const VERSION = '1.15';
public const VERSION = '1.15.1';
/**
* The current release: major * 10000 + minor * 100 + patch
*/
public const VERSION_ID = 11500;
public const VERSION_ID = 11501;
/**
* The current release status, either "stable" or "dev"
*/