first commit, largely copied volunteers

This commit is contained in:
2023-10-25 22:14:53 +03:00
commit 608b4f6ddf
222 changed files with 5121 additions and 0 deletions

0
lib/assets/.keep Normal file
View File

10
lib/form_handler.rb Normal file
View File

@ -0,0 +1,10 @@
class FormHandler
def handle_form(section , data )
puts "Section on page : #{section.page.name}"
data.each do |name , value|
puts "#{name}: #{value}"
end
end
end

0
lib/tasks/.keep Normal file
View File