Add user list page

This commit is contained in:
George Kaklamanos 2019-11-10 22:18:14 +02:00
parent a4f62a2b1e
commit cf7c86490e
4 changed files with 59 additions and 0 deletions

10
functions.rb Normal file
View file

@ -0,0 +1,10 @@
#!/bin/env ruby
def get_boolean(value)
if value
ret = ""
else
ret = ""
end
return ret
end