6 lines
154 B
JavaScript
6 lines
154 B
JavaScript
|
// License: LGPL-3.0-or-later
|
||
|
appl.def('get_supporter_name', function(supporter) {
|
||
|
if(!supporter) return ''
|
||
|
return supporter.name || supporter.email
|
||
|
})
|