Details
-
Type:
Bug
-
Status:
Reopened
-
Priority:
Minor
-
Resolution: Unresolved
-
Affects Version/s: 1.2-M4
-
Fix Version/s: None
-
Component/s: Scaffolding
-
Labels:None
-
Environment:1.2-M4
Description
grails generate-all com.test.ChatResource fails with the following domain class on 1.2M4:
package com.test
class ChatResource {
String name
String value
Type type
enum Type
{ SCRIPT, LINK; }}
works for me. Note your domain should be:
class ChatResource { String name String value Type type } enum Type { SCRIPT, LINK; }