mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-25 20:06:43 -06:00
9 lines
183 B
TypeScript
9 lines
183 B
TypeScript
|
export default global.db.collection('drive_folders');
|
||
|
|
||
|
export function isValidFolderName(name: string): boolean {
|
||
|
return (
|
||
|
(name.trim().length > 0) &&
|
||
|
(name.length <= 200)
|
||
|
);
|
||
|
}
|