Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GPJASPER-76: Fix action index on JasperDemoController #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ class JasperDemoController {
// There is nothing to administer, so just show the demo
redirect(action: 'demo')
}

def index() {
// Suggestion for the bug that I opened in Jira (GPJASPER-76) to solve the absent action and error message on JasperDemoController
redirect(action: 'demo')
}

def demo() {
// This "people" object in this data model is only for displaying the data in a table on the Demo page (demo.gsp) next to the
Expand Down