14 lines
407 B
Haskell
14 lines
407 B
Haskell
module Handler.Allocation.Edit
|
|
( postAApplyR
|
|
, getAEditR, postAEditR
|
|
) where
|
|
|
|
import Import
|
|
|
|
postAApplyR :: TermId -> SchoolId -> AllocationShorthand -> CryptoUUIDCourse -> Handler Void
|
|
postAApplyR = fail "Not implemented"
|
|
|
|
getAEditR, postAEditR :: TermId -> SchoolId -> AllocationShorthand -> CryptoFileNameCourseApplication -> Handler Void
|
|
getAEditR = postAEditR
|
|
postAEditR = fail "Not implemented"
|