mirror of
https://github.com/outline/outline.git
synced 2026-05-01 23:19:49 -05:00
bbbc00baaa
* fix: Set doc slug on importing collections * review
6 lines
138 B
TypeScript
6 lines
138 B
TypeScript
import randomstring from "randomstring";
|
|
|
|
const UrlIdLength = 10;
|
|
|
|
export const generateUrlId = () => randomstring.generate(UrlIdLength);
|