Pending delete or update added to domain log view #2785

This commit is contained in:
Priit Tark 2015-08-10 23:33:09 +03:00
parent e9cf3d2fbe
commit e988bb6a20
5 changed files with 51 additions and 10 deletions

View file

@ -50,4 +50,9 @@ module ApplicationHelper
amount ||= 0
("%01.2f" % amount.round(2)).sub(/\./, ',')
end
def plain_username(username)
username ||= ''
username.split(':').last.to_s.strip
end
end