mirror of
https://github.com/outline/outline.git
synced 2026-04-22 17:59:13 -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);
|