Guest User

Untitled

a guest
Feb 21st, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. include Bouncer
  2.  
  3. get "/" do
  4. 'Public information. The world is indeed flat!'
  5. end
  6.  
  7. get "/secret" do
  8. login_required!
  9. 'Sekret! Hush!'
  10. end
  11.  
  12. get "/login" do
  13. haml :bouncer_login
  14. end
  15.  
  16. post '/login' do
  17. #shamcy stuff
  18. end
Add Comment
Please, Sign In to add comment