Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 416 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 416 Bytes

View compartments

Add support for grouping views. See GRAILS-1243 for background information.

Example

class UserAdminController {
    
    static compartment = "admin"

    // The view should be placed in grails-app/views/admin/userAdmin/index.gsp        
    def index = {
        // ...
    }
    
}