Guest User

Untitled

a guest
Feb 19th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. ## TODO: Make this DRY!!
  2. get '/:channel' do
  3. @channel = params[:channel]
  4. redirect "/#{@channel}/#{relative_day('today')}"
  5. end
  6.  
  7. ## TODO: Make this DRY!!
  8. get '/:channel/' do
  9. @channel = params[:channel]
  10. redirect "/#{@channel}/#{relative_day('today')}"
  11. end
Add Comment
Please, Sign In to add comment