fix: only allow POST for insertDocument in UrlMappings.groovy [2.7] (#20432)

This commit is contained in:
Anton Georgiev 2024-06-06 12:10:28 -04:00 committed by GitHub
parent 9080d2e42a
commit a9cd4718ba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -104,7 +104,7 @@ class UrlMappings {
}
"/bigbluebutton/api/insertDocument"(controller: "api") {
action = [GET: 'insertDocument', POST: 'insertDocument']
action = [POST: 'insertDocument']
}
"/bigbluebutton/api/getJoinUrl"(controller: "api") {