Skip to content
Merged
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 @@ -3,6 +3,9 @@ package grails.springfox.sample
class BootStrap {

def init = { servletContext ->
['Rock', 'Pop', 'Metal', 'Folk'].each {
new Genre(name: it).save(flush:true)
}
}
def destroy = {
}
Expand Down