Skip to content

Instantly share code, notes, and snippets.

@JustinTulloss
Created March 12, 2009 05:04
Show Gist options
  • Save JustinTulloss/77913 to your computer and use it in GitHub Desktop.
Save JustinTulloss/77913 to your computer and use it in GitHub Desktop.
(defn login
([params session]
(dosync
(alter session assoc :twitter-user (params :twitter-user))
(alter session assoc :twitter-password (params :twitter-password)))
(compojure.http.helpers/redirect-to (str "/" (@session :twitter-user)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment