All pastes #2122644 Raw Edit

Someone

public text v1 · immutable
#2122644 ·published 2012-02-29 04:01 UTC
rendered paste body
def save = {
        def teamInstance = new Team(params)
		
        if (teamInstance.save(flush: true)) {
            flash.message = "${message(code:'default.created.message', args: [message(code: 'team.label', default: 'Team'), teamInstance.id])}"
			params.members.each { new Membership(team: teamInstance, member: it).save(failOnError: true) }
            redirect(action: "show", id: teamInstance.id)
        }
        else {
            render(view: "create", model: [teamInstance: teamInstance])
        }
    }