Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mock_data.js « components « permissions « shared « projects « pages « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cf51604e1b06448e9169171db26b4761ef106fc7 (plain)
1
2
3
4
5
6
7
8
9
10
export const generateCatalogSettingsResponse = (isCatalogResource = false) => {
  return {
    data: {
      project: {
        id: 'gid://gitlab/Project/149',
        isCatalogResource,
      },
    },
  };
};