Add user list page
This commit is contained in:
parent
a4f62a2b1e
commit
cf7c86490e
4 changed files with 59 additions and 0 deletions
10
functions.rb
Normal file
10
functions.rb
Normal file
|
@ -0,0 +1,10 @@
|
|||
#!/bin/env ruby
|
||||
|
||||
def get_boolean(value)
|
||||
if value
|
||||
ret = "✅"
|
||||
else
|
||||
ret = "❌"
|
||||
end
|
||||
return ret
|
||||
end
|
Reference in a new issue