Skip to content

Commit

Permalink
studio id must be an uuid
Browse files Browse the repository at this point in the history
  • Loading branch information
dmetzner committed Aug 30, 2024
1 parent 1355a82 commit 734930b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/create_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,19 @@ jobs:
- name: Permissions
run: sudo chmod -R 777 ./

- name: Fix code style
uses: docker://oskarstark/php-cs-fixer-ga:latest
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
args: --allow-risky=yes
php-version: '8.2'

- name: Install dependencies
run: composer install --no-progress --no-suggest --prefer-dist

- name: Run Rector
run: vendor/bin/rector

- name: Fix code style
run: vendor/bin/php-cs-fixer fix

- name: Create Pull Request
id: cpr
Expand Down
6 changes: 1 addition & 5 deletions catroweb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1319,6 +1319,7 @@ paths:

'/studio/{id}':
parameters:
- $ref: '#/components/parameters/Uuid'
- $ref: '#/components/parameters/Locale'
put:
security:
Expand Down Expand Up @@ -2196,11 +2197,6 @@ components:
example: "Newest projects"
description: "Translated name according to the language header"
projectsList:
type: array
description: "Array of projects (deprecated - use projects_list)"
items:
$ref: '#/components/schemas/ProjectResponse'
projects_list:
type: array
description: "Array of projects"
items:
Expand Down

0 comments on commit 734930b

Please sign in to comment.