mirror of
https://github.com/formbricks/formbricks.git
synced 2026-05-25 03:10:22 -05:00
fixes tests
This commit is contained in:
@@ -165,17 +165,14 @@ export const getAccessControlPermission = async (organizationId: string): Promis
|
||||
};
|
||||
|
||||
export const getIsUnifyFeedbackEnabled = async (organizationId: string): Promise<boolean> => {
|
||||
return true;
|
||||
return getCustomPlanFeaturePermission(organizationId, "unifyFeedback");
|
||||
};
|
||||
|
||||
export const getIsFeedbackDirectoriesEnabled = async (organizationId: string): Promise<boolean> => {
|
||||
return true;
|
||||
return getCustomPlanFeaturePermission(organizationId, "feedbackDirectories");
|
||||
};
|
||||
|
||||
export const getIsDashboardsEnabled = async (organizationId: string): Promise<boolean> => {
|
||||
return true;
|
||||
return getCustomPlanFeaturePermission(organizationId, "dashboards");
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user