webmcp
view demo-app/app/main/genre/_action/update.lua @ 3:795b764629ca
Version 1.0.3
Important bugfix related to internal forwards (Bug was introduced by the restriction of views with underscore prefix in Version 1.0.2)
Important bugfix related to internal forwards (Bug was introduced by the restriction of views with underscore prefix in Version 1.0.2)
| author | jbe |
|---|---|
| date | Thu Dec 10 12:00:00 2009 +0100 (2009-12-10) |
| parents | 9fdfb27f8e67 |
| children |
line source
1 local genre
2 local id = param.get_id()
3 if id then
4 genre = Genre:by_id(id)
5 else
6 genre = Genre:new()
7 end
9 if param.get("delete", atom.boolean) then
10 local name = genre.name
11 genre:destroy()
12 slot.put_into("notice", _("Genre '#{name}' deleted", {name = name}))
13 return
14 end
16 param.update(genre, "name", "description")
18 genre:save()
20 if id then
21 slot.put_into("notice", _("Genre '#{name}' updated", {name = genre.name}))
22 else
23 slot.put_into("notice", _("Genre '#{name}' created", {name = genre.name}))
24 end
