Remove unused Profile controller, from the scaffolding

This commit is contained in:
Danielle McLean 2017-10-03 13:37:24 +11:00
parent 0a230e7644
commit a2a0ec5127
Signed by: 00dani
GPG key ID: 3844A6973C6058F1
5 changed files with 2 additions and 72 deletions

View file

@ -1,15 +0,0 @@
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE TemplateHaskell #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE TypeFamilies #-}
module Handler.Profile where
import Import
getProfileR :: Handler Html
getProfileR = do
(_, user) <- requireAuthPair
defaultLayout $ do
setTitle . toHtml $ userIdent user <> "'s User page"
$(widgetFile "profile")