7 lines
173 B
TypeScript
7 lines
173 B
TypeScript
import { Container } from 'typedi';
|
|
import { License } from '@/License';
|
|
|
|
export function isSharingEnabled(): boolean {
|
|
return Container.get(License).isSharingEnabled();
|
|
}
|