Skip to content

Commit 33ad132

Browse files
committed
also allow POSTs to happen (SSP 2.0.6 errored out b/c GET only)
1 parent 55ee37b commit 33ad132

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

routing/routes/routes.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,28 +5,28 @@ webauthn-registration:
55
defaults: {
66
_controller: 'SimpleSAML\Module\webauthn\Controller\Registration::main'
77
}
8-
methods: [GET]
8+
methods: [GET, POST]
99

1010
webauthn-authprocess:
1111
path: /authprocess
1212
defaults: {
1313
_controller: 'SimpleSAML\Module\webauthn\Controller\AuthProcess::main'
1414
}
15-
methods: [GET]
15+
methods: [GET, POST]
1616

1717
webauthn-webauthn:
1818
path: /webauthn
1919
defaults: {
2020
_controller: 'SimpleSAML\Module\webauthn\Controller\WebAuthn::main'
2121
}
22-
methods: [GET]
22+
methods: [GET, POST]
2323

2424
webauthn-supercharged:
2525
path: /supercharged
2626
defaults: {
2727
_controller: 'SimpleSAML\Module\webauthn\Controller\Supercharged::main'
2828
}
29-
methods: [GET]
29+
methods: [GET, POST]
3030

3131
webauthn-pushbackuserpass:
3232
path: /pushbackuserpass

0 commit comments

Comments
 (0)