6 lines
164 B
TypeScript
6 lines
164 B
TypeScript
import { isServerFeatureEnabled } from '@/mastodon/utils/environment';
|
|
|
|
export function areCollectionsEnabled() {
|
|
return isServerFeatureEnabled('collections');
|
|
}
|