add a new status ACCEPTING status of workspace

This commit is contained in:
Jim Wang 2024-07-12 23:16:41 +08:00
parent e8d655b969
commit a5bc5d4266

View File

@ -4,7 +4,8 @@ const projectStatusEnum = Object.freeze({
PENDING: 2, PENDING: 2,
CLOSED: 3, CLOSED: 3,
REJECTED: 4, REJECTED: 4,
APPLYING: 5 APPLYING: 5,
ACCEPTING: 6,
}) })
const projectClosureReasonEnum = Object.freeze({ const projectClosureReasonEnum = Object.freeze({
CLOSED: 0, CLOSED: 0,