11 lines
247 B
Haskell
11 lines
247 B
Haskell
module Handler.ExamOffice.Exams
|
|
( getEOExamsR
|
|
) where
|
|
|
|
import Import
|
|
|
|
-- | List of all exams where the current user may (in her function as
|
|
-- exam-office) access users grades
|
|
getEOExamsR :: Handler Html
|
|
getEOExamsR = fail "not implemented"
|