Skip to content
This repository was archived by the owner on Sep 10, 2024. It is now read-only.

Commit e707da5

Browse files
authored
Merge pull request #75 from ebakke/master
Use a command object to utilize data binding for POST requests
2 parents f0a7fba + dfd4c8d commit e707da5

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

grails3/plugin/grails-app/controllers/org/grails/plugins/console/ConsoleController.groovy

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ class ConsoleController {
4949
render view: 'index', model: model
5050
}
5151

52-
def execute(String code, boolean autoImportDomains) {
53-
Evaluation eval = consoleService.eval(code, autoImportDomains, request)
52+
def execute(ExecuteCommand command) {
53+
Evaluation eval = consoleService.eval(command.code, command.autoImportDomains, request)
5454

5555
JSON.use('console') {
5656
render eval as JSON
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
class ExecuteCommand {
2+
String code
3+
boolean autoImportDomains
4+
}

grails3/plugin/src/test/groovy/unit/org/grails/plugins/console/ConsoleControllerSpec.groovy

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class ConsoleControllerSpec extends Specification {
5757
String code = '"s"'
5858

5959
when:
60-
controller.execute code, false
60+
controller.execute(new ExecuteCommand(code, false))
6161

6262
then:
6363
1 * consoleService.eval(code, false, request) >> new Evaluation(
@@ -77,7 +77,7 @@ class ConsoleControllerSpec extends Specification {
7777
String code = ''
7878

7979
when:
80-
controller.execute code, false
80+
controller.execute(new ExecuteCommand(code, false))
8181

8282
then:
8383
1 * consoleService.eval(code, false, request) >> new Evaluation(

0 commit comments

Comments
 (0)