Skip to content

Commit 92a7b5d

Browse files
committed
fix(ci): correct occ config:app:set syntax for ocm_signed_request_disabled
config:app:set does not accept --type bool; pass --value="true" instead, which getValueBool() resolves correctly. Assisted-by: ClaudeCode:claude-sonnet-4-6 Signed-off-by: Elizabeth Danzberger <elizabeth@elzody.dev>
1 parent 37b3855 commit 92a7b5d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/cypress-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ jobs:
154154
php occ config:app:set richdocuments wopi_url --value="http://localhost:9980"
155155
php occ config:app:set richdocuments public_wopi_url --value="http://localhost:9980"
156156
php occ config:system:set allow_local_remote_servers --value true --type bool
157-
php occ config:app:set core ocm_signed_request_disabled --value true --type bool
157+
php occ config:app:set core ocm_signed_request_disabled --value="true"
158158
php occ richdocuments:activate-config
159159
160160
curl http://admin:admin@localhost:8081/ocs/v1.php/cloud/capabilities\?format\=json -H 'OCS-APIRequest: true'

0 commit comments

Comments
 (0)