12 lines
248 B
TypeScript
12 lines
248 B
TypeScript
import {
|
|
isClientFeatureEnabled,
|
|
isServerFeatureEnabled,
|
|
} from '@/mastodon/utils/environment';
|
|
|
|
export function areCollectionsEnabled() {
|
|
return (
|
|
isClientFeatureEnabled('collections') &&
|
|
isServerFeatureEnabled('collections')
|
|
);
|
|
}
|