Skip to content
This repository was archived by the owner on Mar 28, 2025. It is now read-only.

Commit 3766a1b

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 734930b + 13a0e80 commit 3766a1b

File tree

3 files changed

+496
-502
lines changed

3 files changed

+496
-502
lines changed

catroweb.yaml

Lines changed: 10 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1319,7 +1319,6 @@ paths:
13191319

13201320
'/studio/{id}':
13211321
parameters:
1322-
- $ref: '#/components/parameters/Uuid'
13231322
- $ref: '#/components/parameters/Locale'
13241323
put:
13251324
security:
@@ -1328,7 +1327,7 @@ paths:
13281327
- Studio
13291328
summary: Update a Studio
13301329
parameters:
1331-
- $ref: '#/components/parameters/StudioID'
1330+
- $ref: '#/components/parameters/Uuid'
13321331
requestBody:
13331332
required: true
13341333
content:
@@ -1501,17 +1500,6 @@ components:
15011500
example: "xxxxx.yyyyy.zzzzz"
15021501
required: true
15031502

1504-
##
1505-
# Studio specific
1506-
#
1507-
StudioID:
1508-
name: id
1509-
in: path
1510-
schema:
1511-
$ref: '#/components/schemas/StudioID'
1512-
required: true
1513-
1514-
15151503
##
15161504
# Notifications specific
15171505
#
@@ -2081,7 +2069,7 @@ components:
20812069
description: "The flavor of this project"
20822070
private:
20832071
type: boolean
2084-
description: "Indicates whether a program should be private"
2072+
description: "Indicates whether a project should be private"
20852073
default: false
20862074
example: false
20872075
required:
@@ -2403,26 +2391,26 @@ components:
24032391
type: string
24042392
example: "Catroweb"
24052393
description: "Username of the user who caused the notification"
2406-
program:
2407-
description: "Id of the program for which the notification is about"
2394+
project:
2395+
description: "Id of the project for which the notification is about"
24082396
allOf:
24092397
- $ref: '#/components/schemas/Uuid'
2410-
program_name:
2398+
project_name:
24112399
type: string
24122400
example: "Awesome Game"
2413-
description: "Name of the program for which the notification is about"
2401+
description: "Name of the project for which the notification is about"
24142402
avatar:
24152403
type: string
24162404
example: 'https://share.catrob.at/pocketcode/images/default/avatar_default.png'
24172405
description: "Avatar of the user who caused the notification"
2418-
remixed_program:
2419-
description: "Id of the remixed program"
2406+
remixed_project:
2407+
description: "Id of the remixed project"
24202408
allOf:
24212409
- $ref: '#/components/schemas/Uuid'
2422-
remixed_program_name:
2410+
remixed_project_name:
24232411
type: string
24242412
example: "Awesome Remixed Game"
2425-
description: "Name of the remixed program"
2413+
description: "Name of the remixed project"
24262414
message:
24272415
type: string
24282416
example:
@@ -2435,11 +2423,6 @@ components:
24352423
######################################################
24362424
# Studio Schema
24372425
###
2438-
StudioID:
2439-
type: string
2440-
description: ID of the studio
2441-
example: 1234abcd-12ab-12ab-12ab-123456abcdef
2442-
24432426
CreateStudioRequest:
24442427
type: object
24452428
properties:

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@
2020
"ext-curl": "*",
2121
"ext-json": "*",
2222
"ext-mbstring": "*",
23-
"symfony/validator": "^6.4|^7.0",
23+
"symfony/validator": "^7.0",
2424
"jms/serializer-bundle": "^5.4",
25-
"symfony/framework-bundle": "^6.4|^7.0"
25+
"symfony/framework-bundle": "^7.0"
2626
},
2727
"require-dev": {
2828
"phpunit/phpunit": "^11.0",
2929
"friendsofphp/php-cs-fixer": "*",
3030
"phpstan/phpstan": "*",
31-
"symfony/browser-kit": "^6.4|^7.0",
32-
"symfony/yaml": "^6.4|^7.0",
31+
"symfony/browser-kit": "^7.0",
32+
"symfony/yaml": "^7.0",
3333
"hoa/regex": "~1.0",
3434
"rector/rector": "^1.2"
3535
},

0 commit comments

Comments
 (0)