Skip to content
Snippets Groups Projects
Commit 34c82776 authored by Acid Chicken (硫酸鶏)'s avatar Acid Chicken (硫酸鶏) Committed by syuilo
Browse files

Make issue process of registration tickets better (#5545)

* Make issue process of registration tickets better

* Fix illegal indent

* Bye rangestr

* Update invite.ts

* Fix bug

* Update invite.ts
parent 02bde515
No related branches found
No related tags found
No related merge requests found
......@@ -16,16 +16,19 @@ export const meta = {
params: {}
};
export default define(meta, async (ps) => {
const code = rndstr({ length: 5, chars: '0-9' });
export default define(meta, async () => {
const code = rndstr({
length: 8,
chars: '2-9A-HJ-NP-Z', // [0-9A-Z] w/o [01IO] (32 patterns)
});
await RegistrationTickets.save({
id: genId(),
createdAt: new Date(),
code: code
code,
});
return {
code: code
code,
};
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment