liquid_feedback_frontend
view app/main/member/_action/update_name.lua @ 57:4f39f0a0d5b5
Listing of updated drafts on start page; Code cleanup; Minor bugfix
MOTD, initiator invite, issues to vote and listing of updated drafts shown as tabs on start page;
Bugfix: Initiator icon only shown when initiatorship has been accepted
MOTD, initiator invite, issues to vote and listing of updated drafts shown as tabs on start page;
Bugfix: Initiator icon only shown when initiatorship has been accepted
| author | bsw |
|---|---|
| date | Sat Apr 17 21:59:02 2010 +0200 (2010-04-17) |
| parents | 0ee1e0c42d4c |
| children | 733f65c0c0a0 |
line source
1 local name = param.get("name")
3 name = util.trim(name)
5 if #name < 3 then
6 slot.put_into(_error, _"This name is too short!")
7 end
10 app.session.member.name = name
12 local db_error = app.session.member:try_save()
14 if db_error then
15 if db_error:is_kind_of("IntegrityConstraintViolation.UniqueViolation") then
16 slot.put_into("error", _"This name is already taken, please choose another one!")
17 return false
18 end
19 db_error:escalate()
20 end
22 slot.put_into("notice", _"Your name has been changed")
