Skip to content

Instantly share code, notes, and snippets.

@lolaodelola
Last active February 9, 2021 19:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lolaodelola/a2befc5e3c2ec883202344bf8e502584 to your computer and use it in GitHub Desktop.
Save lolaodelola/a2befc5e3c2ec883202344bf8e502584 to your computer and use it in GitHub Desktop.
class TweetController
require 'tweet'
get '/new_tweet' do
# display html page with form
end
post '/create_tweet' do
content_string = request[:params[:content]]
if Tweet.create(content_string)
# show success flash notice to user
else
# show failure flash notice to user
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment