New member applications
[hcoop/zz_old/portal.git] / app.sig
CommitLineData
20a679fc 1signature APP =
2sig
3 datatype status =
4 CONFIRMING
5 | PENDING
6 | ACCEPTED
7 | REJECTED
8
9 type app = { id : int, name : string, rname : string, email : string,
10 forward : bool, uses : string, other : string, passwd : string,
11 status : status, stamp : Init.C.timestamp }
12
13 val lookupApp : int -> app
14
15end