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

utils.js « users « admin « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f6c1091ba27640b725ef1677f2d3ee5f2f95a09b (plain)
1
2
3
4
5
6
7
export const generateUserPaths = (paths, id) => {
  return Object.fromEntries(
    Object.entries(paths).map(([action, genericPath]) => {
      return [action, genericPath.replace('id', id)];
    }),
  );
};