A Discord application to help manage voice model submissions in the AI HUB server.
Here's a simplified explanation of how the submissions review process works:
graph LR;
startProcess((Start)) ---> submit[//submit/] ---> check[//check/] & checkplus[//checkplus/] ---> approve[//approve/] & reject[//reject/];
approve ---> role[Role] ---> endProcess((End));
reject ---> endProcess;
subgraph 1;
submit;
end;
subgraph 2;
check & checkplus;
end;
subgraph 3;
approve & reject;
end;
subgraph 4;
role;
end;
- An applicant creates a submission.
- A controller retrieves the submission.
- The submission is reviewed by the controller.
- If approved, a special role is granted to the applicant.
Want to know how to use the bot in your own server or what its commands are? Check out QCBot's official wiki!