8 lines
236 B
TypeScript
8 lines
236 B
TypeScript
import { isServerFeatureEnabled } from '@/mastodon/utils/environment';
|
|
|
|
export function areCollectionsEnabled() {
|
|
return isServerFeatureEnabled('collections');
|
|
}
|
|
|
|
export const getCollectionPath = (id: string) => `/collections/${id}`;
|